NEW: sharing transit gateway via RAM

This commit is contained in:
xpk
2020-11-06 18:53:20 +08:00
parent 2588e761b3
commit 90e6acc97d
12 changed files with 227 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
output vpc-id {
value = data.aws_vpc.vpc1.id
}
output share-name {
value = aws_ram_resource_share_accepter.tgw-accepter.share_name
}
output share-status {
value = aws_ram_resource_share_accepter.tgw-accepter.status
}
output shared-resources {
value = aws_ram_resource_share_accepter.tgw-accepter.resources
}
output tgw-id {
value = data.aws_ec2_transit_gateway.shared-tgw.id
}