File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -869,6 +869,7 @@ It is possible to integrate this VPC module with [terraform-aws-transit-gateway
869869| vpc\_ ipv6\_ association\_ id | The association ID for the IPv6 CIDR block |
870870| vpc\_ ipv6\_ cidr\_ block | The IPv6 CIDR block |
871871| vpc\_ main\_ route\_ table\_ id | The ID of the main route table associated with this VPC |
872+ | vpc\_ owner\_ id | The ID of the AWS account that owns the VPC |
872873| vpc\_ secondary\_ cidr\_ blocks | List of secondary CIDR blocks of the VPC |
873874
874875<!-- END OF PRE-COMMIT-TERRAFORM DOCS HOOK -->
Original file line number Diff line number Diff line change @@ -68,6 +68,11 @@ output "vpc_secondary_cidr_blocks" {
6868 value = aws_vpc_ipv4_cidr_block_association. this . * . cidr_block
6969}
7070
71+ output "vpc_owner_id" {
72+ description = " The ID of the AWS account that owns the VPC"
73+ value = concat (aws_vpc. this . * . owner_id , [" " ])[0 ]
74+ }
75+
7176output "private_subnets" {
7277 description = " List of IDs of private subnets"
7378 value = aws_subnet. private . * . id
You can’t perform that action at this time.
0 commit comments