Skip to content

Commit

Permalink
Updated description of vpc_owner_id
Browse files Browse the repository at this point in the history
  • Loading branch information
antonbabenko authored and DrFaust92 committed Jun 20, 2020
1 parent 99089f5 commit 78271ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,3 @@
output "owner_id" {
description = "The owner of the VPC/Account number"
value = concat(aws_vpc.this.*.owner_id, [""])[0]
}

output "vpc_id" {
description = "The ID of the VPC"
value = concat(aws_vpc.this.*.id, [""])[0]
Expand Down Expand Up @@ -73,6 +68,11 @@ output "vpc_secondary_cidr_blocks" {
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" {
description = "List of IDs of private subnets"
value = aws_subnet.private.*.id
Expand Down

0 comments on commit 78271ab

Please sign in to comment.