-
Notifications
You must be signed in to change notification settings - Fork 28
/
example.tfvars
45 lines (42 loc) · 1.37 KB
/
example.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
#__________________________________________________________
#
# Variables for Terraform Cloud
#__________________________________________________________
# agent_pool = "Richfield_Agents"
# tfc_email = "tyscott@cisco.com"
terraform_version = "1.0.3"
tfc_organization = "Cisco-Richfield-Lab"
vcs_repo = "scotttyso/Asgard"
#__________________________________________________________
#
# Workspaces to Create
#__________________________________________________________
workspaces = {
"Asgard_domain_profiles" = {
auto_apply = true
description = "Asgard UCS Domain Profile."
global_remote_state = true
working_directory = "modules/ucs_domain_profiles"
workspace_type = "domain"
}
"Asgard_policies" = {
auto_apply = true
description = "Asgard UCS Policies."
working_directory = "modules/policies"
workspace_type = "policies"
}
"Asgard_pools" = {
auto_apply = true
description = "Pools for the Asgard Organization."
global_remote_state = true
working_directory = "modules/pools"
workspace_type = "pool"
}
"Asgard_profiles" = {
auto_apply = true
description = "Asgard UCS Chassis and Server Profiles."
global_remote_state = true
working_directory = "modules/ucs_profiles"
workspace_type = "profiles"
}
}