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
pool_name ="default"# ibm_container_vpc_cluster automatically names standard pool "standard" (See https://github.com/IBM-Cloud/terraform-provider-ibm/issues/2849)
Copy file name to clipboardExpand all lines: examples/add_rules_to_sg/variables.tf
-221Lines changed: 0 additions & 221 deletions
Original file line number
Diff line number
Diff line change
@@ -41,224 +41,3 @@ variable "ocp_version" {
41
41
description="Version of the OCP cluster to provision"
42
42
default=null
43
43
}
44
-
45
-
variable"worker_pools" {
46
-
type=list(object({
47
-
subnet_prefix =string
48
-
pool_name =string
49
-
machine_type =string
50
-
workers_per_zone =number
51
-
resource_group_id =optional(string)
52
-
labels =optional(map(string))
53
-
}))
54
-
description="List of worker pools."
55
-
default=[
56
-
{
57
-
subnet_prefix ="zone-1"
58
-
pool_name ="default"# ibm_container_vpc_cluster automatically names standard pool "standard" (See https://github.com/IBM-Cloud/terraform-provider-ibm/issues/2849)
description="Create a public gateway in any of the three zones with `true`."
83
-
type=object({
84
-
zone-1 =optional(bool)
85
-
zone-2 =optional(bool)
86
-
zone-3 =optional(bool)
87
-
})
88
-
default={
89
-
zone-1 =true
90
-
zone-2 =false
91
-
zone-3 =false
92
-
}
93
-
}
94
-
95
-
variable"addresses" {
96
-
description="OPTIONAL - IP range that will be defined for the VPC for a certain location. Use only with manual address prefixes"
97
-
type=object({
98
-
zone-1 =optional(list(string))
99
-
zone-2 =optional(list(string))
100
-
zone-3 =optional(list(string))
101
-
})
102
-
default={
103
-
zone-1 = ["10.10.10.0/24"]
104
-
zone-2 = ["10.20.10.0/24"]
105
-
zone-3 = ["10.30.10.0/24"]
106
-
}
107
-
}
108
-
109
-
variable"subnets" {
110
-
description="List of subnets for the vpc. For each item in each array, a subnet will be created. Items can be either CIDR blocks or total ipv4 addressess. Public gateways will be enabled only in zones where a gateway has been created"
0 commit comments