Commit 90718242 authored by Anton Babenko's avatar Anton Babenko Committed by GitHub

Updated description of vpc_owner_id

parent 45e8a564
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]
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment