Skip to content

Commit

Permalink
add subnets, nacl id to output
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jun 1, 2021
1 parent d4e20b8 commit 39a1f37
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions peer/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
}
}

0 comments on commit 39a1f37

Please sign in to comment.