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
90718242
Unverified
Commit
90718242
authored
May 25, 2020
by
Anton Babenko
Committed by
GitHub
May 25, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated description of vpc_owner_id
parent
45e8a564
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
outputs.tf
outputs.tf
+5
-5
No files found.
outputs.tf
View file @
90718242
output
"owner_id"
{
description
=
"The owner of the VPC/Account number"
value
=
concat
(
aws_vpc
.
this
.*.
owner_id
,
[
""
]
)
[
0
]
}
output
"vpc_id"
{
output
"vpc_id"
{
description
=
"The ID of the VPC"
description
=
"The ID of the VPC"
value
=
concat
(
aws_vpc
.
this
.*.
id
,
[
""
]
)
[
0
]
value
=
concat
(
aws_vpc
.
this
.*.
id
,
[
""
]
)
[
0
]
...
@@ -73,6 +68,11 @@ output "vpc_secondary_cidr_blocks" {
...
@@ -73,6 +68,11 @@ output "vpc_secondary_cidr_blocks" {
value
=
aws_vpc_ipv4_cidr_block_association
.
this
.*.
cidr_block
value
=
aws_vpc_ipv4_cidr_block_association
.
this
.*.
cidr_block
}
}
output
"vpc_owner_id"
{
description
=
"The ID of the AWS account that owns the VPC"
value
=
concat
(
aws_vpc
.
this
.*.
owner_id
,
[
""
]
)
[
0
]
}
output
"private_subnets"
{
output
"private_subnets"
{
description
=
"List of IDs of private subnets"
description
=
"List of IDs of private subnets"
value
=
aws_subnet
.
private
.*.
id
value
=
aws_subnet
.
private
.*.
id
...
...
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