avx-pmarie-aws-infra/modules/eip/variables.tf

13 lines
290 B
Terraform
Raw Normal View History

2022-07-12 22:32:18 +02:00
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"
}