Skip to content

Commit

Permalink
Merge pull request #10 from truefoundry/network_vpc_secondary_ranges_…
Browse files Browse the repository at this point in the history
…optional

made network_vpc_secondary_ranges optional
  • Loading branch information
shubhamrai1993 authored Nov 29, 2024
2 parents 1d4794c + a0a902d commit 8871e08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Truefoundry Google Cloud Network Module
| <a name="input_enable_flow_logs"></a> [enable\_flow\_logs](#input\_enable\_flow\_logs) | Enable flow logs for subnets | `bool` | `false` | no |
| <a name="input_enable_private_access"></a> [enable\_private\_access](#input\_enable\_private\_access) | Private access for subnets | `bool` | `true` | no |
| <a name="input_network_name"></a> [network\_name](#input\_network\_name) | SHIM: network name. Should be supplied if shim is true. | `string` | `""` | no |
| <a name="input_network_vpc_secondary_ranges"></a> [network\_vpc\_secondary\_ranges](#input\_network\_vpc\_secondary\_ranges) | List of secondary ranges | <pre>list(object({<br/> range_name = string<br/> ip_cidr_range = string<br/> }))</pre> | n/a | yes |
| <a name="input_network_vpc_secondary_ranges"></a> [network\_vpc\_secondary\_ranges](#input\_network\_vpc\_secondary\_ranges) | List of secondary ranges | <pre>list(object({<br/> range_name = string<br/> ip_cidr_range = string<br/> }))</pre> | `[]` | no |
| <a name="input_private_subnet_cidr"></a> [private\_subnet\_cidr](#input\_private\_subnet\_cidr) | CIDR range for private subnet | `string` | `""` | no |
| <a name="input_project_id"></a> [project\_id](#input\_project\_id) | Project ID in which clusters are deployed | `string` | n/a | yes |
| <a name="input_region"></a> [region](#input\_region) | Region to deploy your cluster in | `string` | n/a | yes |
Expand Down
1 change: 1 addition & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ variable "network_vpc_secondary_ranges" {
range_name = string
ip_cidr_range = string
}))
default = []
}

variable "enable_private_access" {
Expand Down

0 comments on commit 8871e08

Please sign in to comment.