-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.auto.tfvars
51 lines (49 loc) · 1.08 KB
/
constants.auto.tfvars
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
organization = "eggs-projects"
environments = {
"dev" = {
"hosted_zone" = "mikeeggers.com"
"account_id" = "470292911211"
"eks_cluster" = {
"enabled" = true
}
}
"prod" = {
"hosted_zone" = "michaeldeggers.com"
"account_id" = "174199678932"
"eks_cluster" = {
"enabled" = false
}
}
}
projects = {
"ghost-blog" = {
"description" : "Blog to track projects, gaming, opinions, etc...",
"tags" : ["project"],
"visibility" : "public",
"template" : {
"owner" : "michaeldeggers",
"repo" : "repo_template"
},
"prod_enabled" : true
},
"eks-cluster" = {
"description" : "EKS Configuration for hosting Projects",
"tags" : ["project"],
"visibility" : "public",
"template" : {
"owner" : "michaeldeggers",
"repo" : "repo_template"
},
"prod_enabled" : true
},
"test-repo" = {
"description" : "Test Repo",
"tags" : ["demo"],
"visibility" : "private",
"template" : {
"owner" : "michaeldeggers",
"repo" : "repo_template"
},
"prod_enabled" : false
}
}