Files
terraform-talos/openstack/modules/worker/variables.tf
2022-05-08 19:51:21 +03:00

47 lines
830 B
HCL

variable "region" {
description = "Region"
type = string
}
variable "network_internal" {
description = "Internal network"
}
variable "network_external" {
description = "External network"
default = {}
}
variable "instance_count" {
description = "Instances in region"
type = number
}
variable "instance_name" {
description = "Instance name prefix"
type = string
default = "worker"
}
variable "instance_flavor" {
description = "Instance type"
type = string
}
variable "instance_image" {
description = "Instance image"
type = string
}
variable "instance_params" {
description = "Instance template parameters"
type = map(string)
}
variable "instance_ip_start" {
description = "Instances in region"
type = number
default = 21
}