13 lines
290 B
Terraform
13 lines
290 B
Terraform
|
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"
|
||
|
}
|