16 lines
219 B
HCL
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
|
|
}
|