mirror of
https://github.com/optim-enterprises-bv/terraform-talos.git
synced 2025-10-29 09:32:39 +00:00
58 lines
1.0 KiB
HCL
58 lines
1.0 KiB
HCL
|
|
variable "region" {
|
|
description = "Region"
|
|
type = string
|
|
}
|
|
|
|
variable "network_internal" {
|
|
description = "Internal network"
|
|
}
|
|
|
|
variable "network_external" {
|
|
description = "External network"
|
|
}
|
|
|
|
variable "instance_servergroup" {
|
|
description = "Server Group"
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "instance_count" {
|
|
description = "Instances in region"
|
|
type = number
|
|
}
|
|
|
|
variable "instance_flavor" {
|
|
description = "Instance type"
|
|
type = string
|
|
}
|
|
|
|
variable "instance_image" {
|
|
description = "Instance image"
|
|
type = string
|
|
}
|
|
|
|
variable "instance_tags" {
|
|
description = "Instance tags"
|
|
type = list(string)
|
|
default = []
|
|
}
|
|
|
|
variable "instance_secgroups" {
|
|
description = "Instance network security groups"
|
|
type = list(string)
|
|
default = []
|
|
}
|
|
|
|
variable "instance_params" {
|
|
description = "Instance template parameters"
|
|
type = map(string)
|
|
}
|
|
|
|
variable "instance_ip_start" {
|
|
description = "Instances in region"
|
|
type = number
|
|
default = 11
|
|
}
|