-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform.auto.tfvars
68 lines (61 loc) · 1.31 KB
/
terraform.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
organizations = {
"carlcorp" = {
email = "carl.javier+tfecarlcorp@hashicorp.com"
},
"hashicorp" = {
email = "carl.javier+tfehashicorp@hashicorp.com"
},
"dev" = {
email = "carl.javier+tfedev@hashicorp.com"
}
}
tfe-hostname = "tfcarl.is.hashicorpdemo.com"
tfe-teams = {
"carlcorp-devops" = {
name = "devops"
organization = "carlcorp"
},
"carlcorp-dev" = {
name = "dev"
organization = "carlcorp"
},
}
workspace-app = {
"app1" = {
description = "App1 Does Stuff"
name = "app1"
tag_names = ["finance", "src:aws"]
terraform_version = "value"
working_directory = "value"
},
"app2" = {
description = "App2 Does Stuff"
name = "app2"
tag_names = ["engineering", "src:gcp"]
terraform_version = "value"
working_directory = "value"
},
"app3" = {
description = "App3 Does Stuff"
name = "app3"
tag_names = ["security", "src:azure"]
terraform_version = "value"
working_directory = "value"
},
}
tfe_devs_users = {
"jim" = {
email = "jim@example.com"
},
"sandy" = {
email = "sandy@example.com"
}
}
tfe_devops_users = {
"wayne" = {
email = "wayne@example.com"
},
"alice" = {
email = "alice@example.com"
}
}