Fediversity/deployment/run/tf-netbox-cluster/variables.tf

63 lines
1 KiB
HCL

variable "cluster_type_name" {
description = ""
type = string
}
variable "name" {
description = ""
type = string
}
variable "cluster_group_id" {
description = ""
type = number
default = null
}
variable "comments" {
description = ""
type = string
default = ""
}
variable "description" {
description = ""
type = string
default = ""
}
variable "location_id" {
description = "Conflicts with site_id, site_group_id and region_id."
type = number
default = null
}
variable "region_id" {
description = "Conflicts with location_id, site_id and site_group_id."
type = number
default = null
}
variable "site_group_id" {
description = "Conflicts with location_id, site_id and region_id."
type = number
default = null
}
variable "site_id" {
description = "Conflicts with location_id, site_group_id and region_id."
type = number
default = null
}
variable "tags" {
description = ""
type = set(string)
default = []
}
variable "tenant_id" {
description = ""
type = number
default = null
}