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
| <aname="input_availability_zones"></a> [availability\_zones](#input\_availability\_zones)| A list of availability zones names in the region. This value should not be updated, please create a new resource instead |`list(string)`|`null`| no |
66
69
| <aname="input_availability_zones_count"></a> [availability\_zones\_count](#input\_availability\_zones\_count)| The count of availability zones to use within the specified AWS Region, where pairs of public and private subnets will be generated. Valid only when availability\_zones variable is not provided. This value should not be updated, please create a new resource instead |`number`|`null`| no |
70
+
| <aname="input_cleanup_rosa_vpce_security_groups"></a> [cleanup\_rosa\_vpce\_security\_groups](#input\_cleanup\_rosa\_vpce\_security\_groups)| On destroy, remove orphaned ROSA HCP PrivateLink security groups (name suffix -vpce-private-router) left in this VPC after cluster deletion. Enable for ROSA HCP clusters using this module; requires AWS CLI and EC2 permissions at destroy time. |`bool`|`false`| no |
67
71
| <aname="input_name_prefix"></a> [name\_prefix](#input\_name\_prefix)| User-defined prefix for all generated AWS resources of this VPC. This value should not be updated, please create a new resource instead |`string`| n/a | yes |
68
72
| <aname="input_tags"></a> [tags](#input\_tags)| AWS tags to be applied to generated AWS resources of this VPC. |`map(string)`|`null`| no |
69
73
| <aname="input_vpc_cidr"></a> [vpc\_cidr](#input\_vpc\_cidr)| Cidr block of the desired VPC. This value should not be updated, please create a new resource instead |`string`|`"10.0.0.0/16"`| no |
Copy file name to clipboardExpand all lines: modules/vpc/variables.tf
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -29,3 +29,9 @@ variable "tags" {
29
29
default=null
30
30
description="AWS tags to be applied to generated AWS resources of this VPC."
31
31
}
32
+
33
+
variable"cleanup_rosa_vpce_security_groups" {
34
+
type=bool
35
+
default=false
36
+
description="On destroy, remove orphaned ROSA HCP PrivateLink security groups (name suffix -vpce-private-router) left in this VPC after cluster deletion. Enable for ROSA HCP clusters using this module; requires AWS CLI and EC2 permissions at destroy time."
0 commit comments