Files

22 lines
446 B
HCL

variable "id" {
type = number
description = "The ID for the VM that will be transposed into an IP address"
}
variable "name" {
type = string
description = "The domain name for the vm"
}
variable "interface" {
type = string
description = "Which interface should be used. Can be either nat or internal"
}
variable "ttl" {
type = number
description = "TTL value for the new records"
default = 300
}