-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocals.tf
51 lines (46 loc) · 1.91 KB
/
locals.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
locals {
repos = {
"fem-eci-terraform-tfe" = {
description = "Automation for Terraform Enterprise"
gitignore_template = "Terraform"
name = "fem-eci-terraform-tfe"
topics = ["axel-nolasco", "terraform", "frontend-masters"]
visibility = "public"
}
"fem-eci-terraform-github" = {
description = "Automation for GitHub"
gitignore_template = "Terraform"
name = "fem-eci-terraform-github"
topics = ["axel-nolasco", "terraform", "frontend-masters"]
visibility = "public"
}
"fem-eci-terraform-aws-network" = {
description = "Automation for aws network"
gitignore_template = "Terraform"
name = "fem-eci-terraform-aws-network"
topics = ["axel-nolasco", "terraform", "frontend-masters", "aws", "aws-network", "network"]
visibility = "public"
}
"fem-eci-terraform-aws-cluster" = {
description = "Automation for aws cluster"
gitignore_template = "Terraform"
name = "fem-eci-terraform-aws-cluster"
topics = ["axel-nolasco", "terraform", "frontend-masters", "aws", "aws-cluster", "cluster"]
visibility = "public"
}
"fem-eci-terraform-product-service" = {
description = "Automation for product services"
gitignore_template = "Terraform"
name = "fem-eci-terraform-product-service"
topics = ["axel-nolasco", "terraform", "frontend-masters", "service"]
visibility = "public"
}
"fem-eci-service" = {
description = "Example product service"
gitignore_template = "Go"
name = "fem-eci-service"
topics = ["axel-nolasco", "terraform", "frontend-masters", "service", "go"]
visibility = "public"
}
}
}