igw 생성.

This commit is contained in:
2022-12-26 19:13:43 +09:00
parent 535d721a50
commit 89ee20efff
22 changed files with 136 additions and 28 deletions

View File

@ -9,6 +9,6 @@ resource "aws_vpc" "vpc-hq" {
tags = {
Name = "test"
Name = "${var.tag_name}-vpc"
}
}

View File

@ -2,4 +2,7 @@ variable "cidr_block" {
description = "value"
type = string
}
variable "tag_name" {
description = "value"
type = string
}