route table 추가 환경변경

This commit is contained in:
2023-01-13 02:55:31 +09:00
parent e9c35f55b5
commit d3f56ecc0c
20 changed files with 274 additions and 201 deletions

View File

@ -0,0 +1,6 @@
resource "aws_ec2_transit_gateway" "tgw" {
description = "tgw"
tags = {
Name = "${var.tag_name}"
}
}

View File

@ -0,0 +1,3 @@
output "tgw_id" {
value = aws_ec2_transit_gateway.tgw.id
}

View File

@ -0,0 +1,5 @@
variable "tag_name" {
description = "tag_name"
type = string
}