File tree 1 file changed +55
-0
lines changed
1 file changed +55
-0
lines changed Original file line number Diff line number Diff line change
1
+ variable "default_location" {
2
+ description = " The location for Azure resources. (e.g 'uksouth')|1|azure_location"
3
+ type = string
4
+ }
5
+
6
+ variable "subscription_id_connectivity" {
7
+ description = " The identifier of the Connectivity Subscription. (e.g '00000000-0000-0000-0000-000000000000')|2|azure_subscription_id"
8
+ type = string
9
+ }
10
+
11
+ variable "subscription_id_identity" {
12
+ description = " The identifier of the Identity Subscription. (e.g '00000000-0000-0000-0000-000000000000')|3|azure_subscription_id"
13
+ type = string
14
+ }
15
+
16
+ variable "subscription_id_management" {
17
+ description = " The identifier of the Management Subscription. (e.g 00000000-0000-0000-0000-000000000000)|4|azure_subscription_id"
18
+ type = string
19
+ }
20
+
21
+ variable "root_id" {
22
+ description = " The root id is the identity for the root management group and a prefix applied to all management group identities|5|azure_name"
23
+ type = string
24
+ default = " es"
25
+ }
26
+
27
+ variable "root_name" {
28
+ description = " The display name for the root management group|6|azure_name"
29
+ type = string
30
+ default = " Enterprise-Scale"
31
+ }
32
+
33
+ variable "hub_virtual_network_address_prefix" {
34
+ description = " The IP address range for the hub network in CIDR format|7|cidr_range"
35
+ type = string
36
+ default = " "
37
+ }
38
+
39
+ variable "firewall_subnet_address_prefix" {
40
+ description = " The IP address range foe the firewall subnet in CIDR format|8|cidr_range"
41
+ type = string
42
+ default = " "
43
+ }
44
+
45
+ variable "gateway_subnet_address_prefix" {
46
+ description = " The IP address range foe the gateway subnet in CIDR format|9|cidr_range"
47
+ type = string
48
+ default = " "
49
+ }
50
+
51
+ variable "virtual_network_gateway_creation_enabled" {
52
+ description = " Whether the virtual network gateway is created|10|bool"
53
+ type = bool
54
+ default = false
55
+ }
You can’t perform that action at this time.
0 commit comments