Skip to content

Commit 599cbe8

Browse files
authored
docs: Clarifies default_vpc attributes (#552)
1 parent 7534556 commit 599cbe8

File tree

2 files changed

+20
-20
lines changed

2 files changed

+20
-20
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -673,16 +673,16 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
673673
| default\_network\_acl\_id | The ID of the default network ACL |
674674
| default\_route\_table\_id | The ID of the default route table |
675675
| default\_security\_group\_id | The ID of the security group created by default on VPC creation |
676-
| default\_vpc\_arn | The ARN of the VPC |
677-
| default\_vpc\_cidr\_block | The CIDR block of the VPC |
678-
| default\_vpc\_default\_network\_acl\_id | The ID of the default network ACL |
679-
| default\_vpc\_default\_route\_table\_id | The ID of the default route table |
680-
| default\_vpc\_default\_security\_group\_id | The ID of the security group created by default on VPC creation |
681-
| default\_vpc\_enable\_dns\_hostnames | Whether or not the VPC has DNS hostname support |
682-
| default\_vpc\_enable\_dns\_support | Whether or not the VPC has DNS support |
683-
| default\_vpc\_id | The ID of the VPC |
684-
| default\_vpc\_instance\_tenancy | Tenancy of instances spin up within VPC |
685-
| default\_vpc\_main\_route\_table\_id | The ID of the main route table associated with this VPC |
676+
| default\_vpc\_arn | The ARN of the Default VPC |
677+
| default\_vpc\_cidr\_block | The CIDR block of the Default VPC |
678+
| default\_vpc\_default\_network\_acl\_id | The ID of the default network ACL of the Default VPC |
679+
| default\_vpc\_default\_route\_table\_id | The ID of the default route table of the Default VPC |
680+
| default\_vpc\_default\_security\_group\_id | The ID of the security group created by default on Default VPC creation |
681+
| default\_vpc\_enable\_dns\_hostnames | Whether or not the Default VPC has DNS hostname support |
682+
| default\_vpc\_enable\_dns\_support | Whether or not the Default VPC has DNS support |
683+
| default\_vpc\_id | The ID of the Default VPC |
684+
| default\_vpc\_instance\_tenancy | Tenancy of instances spin up within Default VPC |
685+
| default\_vpc\_main\_route\_table\_id | The ID of the main route table associated with the Default VPC |
686686
| egress\_only\_internet\_gateway\_id | The ID of the egress only Internet Gateway |
687687
| elasticache\_network\_acl\_arn | ARN of the elasticache network ACL |
688688
| elasticache\_network\_acl\_id | ID of the elasticache network ACL |

outputs.tf

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -368,52 +368,52 @@ output "vgw_arn" {
368368
}
369369

370370
output "default_vpc_id" {
371-
description = "The ID of the VPC"
371+
description = "The ID of the Default VPC"
372372
value = concat(aws_default_vpc.this.*.id, [""])[0]
373373
}
374374

375375
output "default_vpc_arn" {
376-
description = "The ARN of the VPC"
376+
description = "The ARN of the Default VPC"
377377
value = concat(aws_default_vpc.this.*.arn, [""])[0]
378378
}
379379

380380
output "default_vpc_cidr_block" {
381-
description = "The CIDR block of the VPC"
381+
description = "The CIDR block of the Default VPC"
382382
value = concat(aws_default_vpc.this.*.cidr_block, [""])[0]
383383
}
384384

385385
output "default_vpc_default_security_group_id" {
386-
description = "The ID of the security group created by default on VPC creation"
386+
description = "The ID of the security group created by default on Default VPC creation"
387387
value = concat(aws_default_vpc.this.*.default_security_group_id, [""])[0]
388388
}
389389

390390
output "default_vpc_default_network_acl_id" {
391-
description = "The ID of the default network ACL"
391+
description = "The ID of the default network ACL of the Default VPC"
392392
value = concat(aws_default_vpc.this.*.default_network_acl_id, [""])[0]
393393
}
394394

395395
output "default_vpc_default_route_table_id" {
396-
description = "The ID of the default route table"
396+
description = "The ID of the default route table of the Default VPC"
397397
value = concat(aws_default_vpc.this.*.default_route_table_id, [""])[0]
398398
}
399399

400400
output "default_vpc_instance_tenancy" {
401-
description = "Tenancy of instances spin up within VPC"
401+
description = "Tenancy of instances spin up within Default VPC"
402402
value = concat(aws_default_vpc.this.*.instance_tenancy, [""])[0]
403403
}
404404

405405
output "default_vpc_enable_dns_support" {
406-
description = "Whether or not the VPC has DNS support"
406+
description = "Whether or not the Default VPC has DNS support"
407407
value = concat(aws_default_vpc.this.*.enable_dns_support, [""])[0]
408408
}
409409

410410
output "default_vpc_enable_dns_hostnames" {
411-
description = "Whether or not the VPC has DNS hostname support"
411+
description = "Whether or not the Default VPC has DNS hostname support"
412412
value = concat(aws_default_vpc.this.*.enable_dns_hostnames, [""])[0]
413413
}
414414

415415
output "default_vpc_main_route_table_id" {
416-
description = "The ID of the main route table associated with this VPC"
416+
description = "The ID of the main route table associated with the Default VPC"
417417
value = concat(aws_default_vpc.this.*.main_route_table_id, [""])[0]
418418
}
419419

0 commit comments

Comments
 (0)