forked from Azure/caf-terraform-landingzones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
53 lines (48 loc) · 1.1 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
# Map of the remote data state
variable lower_storage_account_name {}
variable lower_container_name {}
variable lower_resource_group_name {}
variable tfstate_storage_account_name {
description = "This value is propulated by the rover"
}
variable tfstate_container_name {
description = "This value is propulated by the rover"
}
variable tfstate_key {
description = "This value is propulated by the rover"
}
variable tfstate_resource_group_name {
description = "This value is propulated by the rover"
}
variable landingzone {
default = {
backend_type = "azurerm"
global_settings_key = "launchpad"
level = "level1"
key = "foundations"
tfstates = {
launchpad = {
level = "lower"
tfstate = "caf_launchpad.tfstate"
}
}
}
}
variable tenant_id {}
variable rover_version {}
variable logged_user_objectId {
default = null
}
variable logged_aad_app_objectId {
default = null
}
variable tags {
type = map
default = {}
}
variable enterprise_scale {
default = {}
}
variable diagnostics_definition {
default = {}
}