forked from Azure/caf-terraform-landingzones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
61 lines (59 loc) · 1.2 KB
/
variables.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
59
60
61
# Map of the remote data state for lower level
variable lower_storage_account_name {}
variable lower_container_name {}
variable lower_resource_group_name {}
variable tfstate_storage_account_name {}
variable tfstate_container_name {}
variable tfstate_key {}
variable tfstate_resource_group_name {}
variable landingzone {
default = {
backend_type = "azurerm"
level = "level2"
global_settings_key = "foundations"
key = "shared_services"
tfstates = {
foundations = {
level = "lower"
tfstate = "caf_foundations.tfstate"
}
foundations = {
level = "lower"
tfstate = "caf_foundations.tfstate"
}
}
}
}
variable tenant_id {}
variable global_settings {
default = {}
}
variable rover_version {}
variable logged_user_objectId {
default = null
}
variable logged_aad_app_objectId {
default = null
}
variable tags {
type = map
default = {}
}
variable diagnostics_definition {
default = {}
}
variable resource_groups {
default = {}
}
variable automations {
default = {}
}
variable recovery_vaults {
default = {}
}
variable replicated_vms {
default = {}
}
variable network_mappings {
default = {}
}