forked from fediversity/fediversity
26 lines
445 B
HCL
26 lines
445 B
HCL
variable "prefix_id" {
|
|
description = "The `id` output of a prefix resource / data source."
|
|
type = number
|
|
default = null
|
|
}
|
|
|
|
variable "ip_range_id" {
|
|
description = "The `id` output of a `netbox_ip_range` resource."
|
|
type = number
|
|
default = null
|
|
}
|
|
|
|
variable "cluster_name" {
|
|
description = ""
|
|
type = string
|
|
}
|
|
|
|
variable "vm_name" {
|
|
description = ""
|
|
type = string
|
|
}
|
|
|
|
variable "interface_name" {
|
|
description = ""
|
|
type = string
|
|
}
|