You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: variables.tf
+2-8Lines changed: 2 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -67,12 +67,6 @@ variable "load_balancer_sku" {
67
67
description="The SKU of the Azure Load Balancer. Accepted values are Basic and Standard."
68
68
default="Standard"
69
69
}
70
-
71
-
variable"lb_availability_zone" {
72
-
description="A list of Availability Zones which the Load Balancer's IP Addresses should be created in. Possible values are `Zone-Redundant`, `1`, `2`, `3`, and `No-Zone`. Availability Zone can only be updated whenever the name of the front end ip configuration changes"
73
-
default="Zone-Redundant"
74
-
}
75
-
76
70
variable"private_ip_address_allocation" {
77
71
description="The allocation method for the Private IP Address used by this Load Balancer. Possible values as Dynamic and Static."
78
72
default="Dynamic"
@@ -237,12 +231,12 @@ variable "vm_time_zone" {
237
231
238
232
variable"availability_zones" {
239
233
description="A list of Availability Zones in which the Virtual Machines in this Scale Set should be created in"
240
-
default=[1, 2, 3]
234
+
default=null#[1, 2, 3]
241
235
}
242
236
243
237
variable"availability_zone_balance" {
244
238
description="Should the Virtual Machines in this Scale Set be strictly evenly distributed across Availability Zones?"
0 commit comments