Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
terraform-aws-vpc
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Terraform Modules
terraform-aws-vpc
Commits
599cbe8d
Unverified
Commit
599cbe8d
authored
Jan 14, 2021
by
Lucas Albertine de Godoi
Committed by
GitHub
Jan 14, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs: Clarifies default_vpc attributes (#552)
parent
75345560
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
20 deletions
+20
-20
README.md
README.md
+10
-10
outputs.tf
outputs.tf
+10
-10
No files found.
README.md
View file @
599cbe8d
...
...
@@ -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 th
is
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 th
e 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 |
...
...
outputs.tf
View file @
599cbe8d
...
...
@@ -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 th
is
VPC"
description
=
"The ID of the main route table associated with th
e Default
VPC"
value
=
concat
(
aws_default_vpc
.
this
.*.
main_route_table_id
,
[
""
]
)
[
0
]
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment