Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Clarifies default_vpc attributes #552

Merged
merged 2 commits into from
Jan 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -673,16 +673,16 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
| default\_network\_acl\_id | The ID of the default network ACL |
| default\_route\_table\_id | The ID of the default route table |
| default\_security\_group\_id | The ID of the security group created by default on VPC creation |
| default\_vpc\_arn | The ARN of the VPC |
| default\_vpc\_cidr\_block | The CIDR block of the VPC |
| default\_vpc\_default\_network\_acl\_id | The ID of the default network ACL |
| default\_vpc\_default\_route\_table\_id | The ID of the default route table |
| default\_vpc\_default\_security\_group\_id | The ID of the security group created by default on VPC creation |
| default\_vpc\_enable\_dns\_hostnames | Whether or not the VPC has DNS hostname support |
| default\_vpc\_enable\_dns\_support | Whether or not the VPC has DNS support |
| default\_vpc\_id | The ID of the VPC |
| default\_vpc\_instance\_tenancy | Tenancy of instances spin up within VPC |
| default\_vpc\_main\_route\_table\_id | The ID of the main route table associated with this VPC |
| default\_vpc\_arn | The ARN of the Default VPC |
| default\_vpc\_cidr\_block | The CIDR block of the Default VPC |
| default\_vpc\_default\_network\_acl\_id | The ID of the default network ACL of the Default VPC |
| default\_vpc\_default\_route\_table\_id | The ID of the default route table of the Default VPC |
| default\_vpc\_default\_security\_group\_id | The ID of the security group created by default on Default VPC creation |
| default\_vpc\_enable\_dns\_hostnames | Whether or not the Default VPC has DNS hostname support |
| default\_vpc\_enable\_dns\_support | Whether or not the Default VPC has DNS support |
| default\_vpc\_id | The ID of the Default VPC |
| default\_vpc\_instance\_tenancy | Tenancy of instances spin up within Default VPC |
| default\_vpc\_main\_route\_table\_id | The ID of the main route table associated with the Default VPC |
| egress\_only\_internet\_gateway\_id | The ID of the egress only Internet Gateway |
| elasticache\_network\_acl\_arn | ARN of the elasticache network ACL |
| elasticache\_network\_acl\_id | ID of the elasticache network ACL |
Expand Down
20 changes: 10 additions & 10 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -368,52 +368,52 @@ output "vgw_arn" {
}

output "default_vpc_id" {
description = "The ID of the VPC"
description = "The ID of the Default VPC"
value = concat(aws_default_vpc.this.*.id, [""])[0]
}

output "default_vpc_arn" {
description = "The ARN of the VPC"
description = "The ARN of the Default VPC"
value = concat(aws_default_vpc.this.*.arn, [""])[0]
}

output "default_vpc_cidr_block" {
description = "The CIDR block of the VPC"
description = "The CIDR block of the Default VPC"
value = concat(aws_default_vpc.this.*.cidr_block, [""])[0]
}

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

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

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

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

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

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

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

Expand Down