9 lines
154 B
HCL
9 lines
154 B
HCL
variable "eips" {
|
|
description = "a map of elastic ip objects"
|
|
type = map(object({
|
|
vpc = bool
|
|
count = number
|
|
tags = map(string)
|
|
}))
|
|
}
|