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
feat: added new input ignore_vpcs_for_cluster_deployment to the OCP standard DA to allow you to specify a VPC that you do not wish to create a cluster in. By default a cluster will be created in all of the VPCs specified in the vpcs input. (#881)
Copy file name to clipboardExpand all lines: patterns/roks/module/variables.tf
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -50,6 +50,13 @@ variable "vpcs" {
50
50
}
51
51
}
52
52
53
+
variable"ignore_vpcs_for_cluster_deployment" {
54
+
description="List of VPCs from input `vpcs` that should be ignored when deploying OpenShift clusters. If empty then a cluster will be deployed in all VPCs specified in input `vpcs`."
Copy file name to clipboardExpand all lines: patterns/roks/variables.tf
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,13 @@ variable "vpcs" {
56
56
}
57
57
}
58
58
59
+
variable"ignore_vpcs_for_cluster_deployment" {
60
+
description="List of VPCs from input `vpcs` that should be ignored when deploying OpenShift clusters. If empty then a cluster will be deployed in all VPCs specified in input `vpcs`."
0 commit comments