13 lines
290 B
HCL
13 lines
290 B
HCL
variable "vpc" {
|
|
type = bool
|
|
description = "Boolean if the EIP is in a VPC or not"
|
|
}
|
|
variable "eip_count" {
|
|
type = number
|
|
description = "The number of elastic ip to create"
|
|
}
|
|
variable "tags" {
|
|
type = map(string)
|
|
description = "The tags to set on the eip"
|
|
}
|