From 39a1f37b079d74070bf7a6387cd71c2f99b38e1e Mon Sep 17 00:00:00 2001 From: badra001 Date: Tue, 1 Jun 2021 13:54:48 -0400 Subject: [PATCH] add subnets, nacl id to output --- peer/outputs.tf | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/peer/outputs.tf b/peer/outputs.tf index 770ae6f..4859023 100644 --- a/peer/outputs.tf +++ b/peer/outputs.tf @@ -18,16 +18,20 @@ output "peering_info" { description = "Peering Information" value = { self = { - vpc_id = local.self_vpc_id - tag_name = local.self_vpc_tag_name - cidr_block = local.self_cidr_block - label = local.self_label + vpc_id = local.self_vpc_id + tag_name = local.self_vpc_tag_name + cidr_block = local.self_cidr_block + label = local.self_label + subnets = local.self_subnets + network_acl_id = local.self_network_acl_ids } peer = { - vpc_id = local.peer_vpc_id - tag_name = local.peer_vpc_tag_name - cidr_block = local.peer_cidr_block - label = local.peer_label + vpc_id = local.peer_vpc_id + tag_name = local.peer_vpc_tag_name + cidr_block = local.peer_cidr_block + label = local.peer_label + subnets = local.peer_subnets + network_acl_id = local.peer_network_acl_ids } } }