Files
assignment01/modules/alb/variables.tf
2025-11-18 03:20:27 +00:00

16 lines
219 B
HCL

variable "name" {
type = string
}
variable "subnet_ids" {
type = list(string)
}
variable "sg_ids" {
type = list(string)
}
variable "vpc_id" {
type = string
}
variable "instance_id" {
type = string
}