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