Skip to content

Commit 013eae2

Browse files
committed
default subnet suffix
1 parent f7d6fa2 commit 013eae2

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ No modules.
423423
| <a name="input_cwan_subnet_ipv6_prefixes"></a> [cwan\_subnet\_ipv6\_prefixes](#input\_cwan\_subnet\_ipv6\_prefixes) | Assigns IPv6 CloudWAN subnet id based on the Amazon provided /56 prefix base 10 integer (0-256). Must be of equal length to the corresponding IPv4 subnet list | `list(string)` | `[]` | no |
424424
| <a name="input_cwan_subnet_names"></a> [cwan\_subnet\_names](#input\_cwan\_subnet\_names) | Explicit values to use in the Name tag on CloudWAN subnets. If empty, Name tags are generated | `list(string)` | `[]` | no |
425425
| <a name="input_cwan_subnet_private_dns_hostname_type_on_launch"></a> [cwan\_subnet\_private\_dns\_hostname\_type\_on\_launch](#input\_cwan\_subnet\_private\_dns\_hostname\_type\_on\_launch) | The type of hostnames to assign to instances in the subnet at launch. For IPv6-only subnets, an instance DNS name must be based on the instance ID. For dual-stack and IPv4-only subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID. Valid values: `ip-name`, `resource-name` | `string` | `null` | no |
426-
| <a name="input_cwan_subnet_suffix"></a> [cwan\_subnet\_suffix](#input\_cwan\_subnet\_suffix) | Suffix to append to CloudWAN subnets name | `string` | `"db"` | no |
426+
| <a name="input_cwan_subnet_suffix"></a> [cwan\_subnet\_suffix](#input\_cwan\_subnet\_suffix) | Suffix to append to CloudWAN subnets name | `string` | `"cwan"` | no |
427427
| <a name="input_cwan_subnet_tags"></a> [cwan\_subnet\_tags](#input\_cwan\_subnet\_tags) | Additional tags for the CloudWAN subnets | `map(string)` | `{}` | no |
428428
| <a name="input_cwan_subnets"></a> [cwan\_subnets](#input\_cwan\_subnets) | A list of CloudWAN subnets inside the VPC | `list(string)` | `[]` | no |
429429
| <a name="input_database_acl_tags"></a> [database\_acl\_tags](#input\_database\_acl\_tags) | Additional tags for the database subnets network ACL | `map(string)` | `{}` | no |
@@ -638,7 +638,7 @@ No modules.
638638
| <a name="input_tgw_subnet_ipv6_prefixes"></a> [tgw\_subnet\_ipv6\_prefixes](#input\_tgw\_subnet\_ipv6\_prefixes) | Assigns IPv6 transit gateway subnet id based on the Amazon provided /56 prefix base 10 integer (0-256). Must be of equal length to the corresponding IPv4 subnet list | `list(string)` | `[]` | no |
639639
| <a name="input_tgw_subnet_names"></a> [tgw\_subnet\_names](#input\_tgw\_subnet\_names) | Explicit values to use in the Name tag on transit gateway subnets. If empty, Name tags are generated | `list(string)` | `[]` | no |
640640
| <a name="input_tgw_subnet_private_dns_hostname_type_on_launch"></a> [tgw\_subnet\_private\_dns\_hostname\_type\_on\_launch](#input\_tgw\_subnet\_private\_dns\_hostname\_type\_on\_launch) | The type of hostnames to assign to instances in the subnet at launch. For IPv6-only subnets, an instance DNS name must be based on the instance ID. For dual-stack and IPv4-only subnets, you can specify whether DNS names use the instance IPv4 address or the instance ID. Valid values: `ip-name`, `resource-name` | `string` | `null` | no |
641-
| <a name="input_tgw_subnet_suffix"></a> [tgw\_subnet\_suffix](#input\_tgw\_subnet\_suffix) | Suffix to append to transit gateway subnets name | `string` | `"db"` | no |
641+
| <a name="input_tgw_subnet_suffix"></a> [tgw\_subnet\_suffix](#input\_tgw\_subnet\_suffix) | Suffix to append to transit gateway subnets name | `string` | `"tgw"` | no |
642642
| <a name="input_tgw_subnet_tags"></a> [tgw\_subnet\_tags](#input\_tgw\_subnet\_tags) | Additional tags for the transit gateway subnets | `map(string)` | `{}` | no |
643643
| <a name="input_tgw_subnets"></a> [tgw\_subnets](#input\_tgw\_subnets) | A list of transit gateway subnets inside the VPC | `list(string)` | `[]` | no |
644644
| <a name="input_use_ipam_pool"></a> [use\_ipam\_pool](#input\_use\_ipam\_pool) | Determines whether IPAM pool is used for CIDR allocation | `bool` | `false` | no |

variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1239,7 +1239,7 @@ variable "tgw_subnet_names" {
12391239
variable "tgw_subnet_suffix" {
12401240
description = "Suffix to append to transit gateway subnets name"
12411241
type = string
1242-
default = "db"
1242+
default = "tgw"
12431243
}
12441244

12451245
variable "create_tgw_subnet_route_table" {
@@ -1379,7 +1379,7 @@ variable "cwan_subnet_names" {
13791379
variable "cwan_subnet_suffix" {
13801380
description = "Suffix to append to CloudWAN subnets name"
13811381
type = string
1382-
default = "db"
1382+
default = "cwan"
13831383
}
13841384

13851385
variable "create_cwan_subnet_route_table" {

0 commit comments

Comments
 (0)