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 } } }