-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlocals.tf
58 lines (58 loc) · 2.07 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
52
53
54
55
56
57
58
locals {
repositories = {
"ansible-demo-platform" = {
description = "Configuration as code management of my demo AAP instance."
name = "ansible-demo-platform"
topics = ["configuration-as-code", "ansible"]
visibility = "public"
},
"ansible-demo-content" = {
description = "Playbook content for various Ansible demos."
name = "ansible-demo-content"
topics = ["ansible"]
visibility = "private"
},
"ansible-demos" = {
description = "Playbook content for various Ansible demos."
name = "ansible-demos"
topics = ["ansible", "demo"]
visibility = "private"
},
"ansible-homelab" = {
description = "Playbook content for managing my homelab."
name = "ansible-homelab"
topics = ["ansible", "homelab"]
visibility = "private"
},
"homernetes" = {
description = "Configuration as code management of my home Kubernetes cluster."
name = "homernetes"
topics = ["configuration-as-code", "kubernetes"]
visibility = "private"
},
"sno-ops" = {
description = "Configuration as code management of my single node OpenShift box."
name = "sno-ops"
topics = ["configuration-as-code", "openshift"]
visibility = "public"
},
"ocp-neptune" = {
description = "Configuration as code management of my compact OpenShift cluster."
name = "ocp-neptune"
topics = ["configuration-as-code", "openshift"]
visibility = "public"
},
"terraform-github" = {
description = "Configuration as code management of organization repositories."
name = "terraform-github"
topics = ["configuration-as-code", "github", "terraform"]
visibility = "public"
},
"terraform-vmware" = {
description = "Configuration as code management of my VMware infrastructure."
name = "terraform-vmware"
topics = ["configuration-as-code", "terraform", "vmware"]
visibility = "public"
},
}
}