output 변수 테스트

This commit is contained in:
2022-12-27 23:18:58 +09:00
parent c79a4c9c29
commit 72fb5351b6
12 changed files with 138 additions and 65 deletions

View File

@ -3,6 +3,11 @@ variable "vpc_id" {
type = string
}
variable "vpc_name" {
description = "set vpc name"
type = string
}
// reference | https://github.com/davidcsi/terraform/blob/master/healthchecks/main.tf
variable "subnet-az-list" {
description = "Subnet available zone & cidr"
@ -25,5 +30,8 @@ variable "subnet-az-list" {
# cidr = "10.3.4.0/24"
# }
# }
}
variable "public_ip_on" {
type = bool
}