Skip to content
This repository was archived by the owner on Nov 24, 2023. It is now read-only.

Commit 1f4b09d

Browse files
committed
Fix secure roks: remove default for subnet address count
1 parent c2e9314 commit 1f4b09d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/secure-roks-cluster/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Review the following variables that you can customize in your Terraform template
8787
|activity_tracker_instance|GUID of the IBM Cloud Activity Tracker instance. If set to `null`, a instance is created with the following naming convention: `<var.resource_prefix>-at`|string|`null`|No|
8888
|custom_sg_rules|Custom VPC security group rules. For more information, review the following [`custom_sg_rules` object](#custom_sg_rules-object). |list(object)|[]|No|
8989
|ip_ranges|An ordered list of IP address ranges on which the three VPC subnets are created, for the region. If the subnets are created in the `us-south` region, the IP address ranges must match the IP address ranges of the region's zones, [`us-south-1`, `us-south-2`, `us-south-3`].Conflicts with `number_of_addresses` argument For more information, see [Designing an address plan in the VPC documentation](https://cloud.ibm.com/docs/vpc?topic=vpc-vpc-addressing-plan-design).|list(string)|null|No|
90-
|number_of_addresses|Number of IPV4 Addresses. Conflicts with `ip_ranges` argument|number|256|No|
90+
|number_of_addresses|Number of IPV4 Addresses. Conflicts with `ip_ranges` argument|number|`null`|No|
9191

9292
### custom_sg_rules object
9393

examples/secure-roks-cluster/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,5 +140,5 @@ variable "ip_ranges" {
140140
variable "number_of_addresses" {
141141
description = "Number of IPV4 Addresses. Conflicts with ip_ranges argument"
142142
type = number
143-
default = 256
143+
default = null
144144
}

0 commit comments

Comments
 (0)