-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
51 lines (43 loc) · 1.08 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
variable "root_id" {
type = string
default = "mw-demo"
}
variable "root_name" {
type = string
default = "MW-Demo"
}
### These variables are used to determine which of the platform LZ resources will be deployed
variable "deploy_connectivity_resources" {
type = bool
default = true
}
variable "connectivity_resources_location" {
type = string
default = "northeurope"
}
#
variable "connectivity_resources_tags" {
type = map(string)
default = {
demo_type = "deploy_connectivity_resources_custom"
}
}
#
# # Variables used to control the deployment of management resources for
# # the platform
variable "deploy_management_resources" {
type = bool
default = true
}
variable "management_security_contact_email" {
type = string
default = "[email protected]"
}
#### Demo Variable used to Move an existing Subscription to a Managagement group -
# Platform/Identit7
variable "subscription_id_identity" {
type = string
# ME-M365x12435175-hansze-2
# When this is set subscription will be Moved to LZ
default = "26f87617-364a-4ac7-bdc3-44bf3e33b253"
}