mirror of
https://github.com/devitq/yandexcloud-k3s.git
synced 2026-09-20 22:50:34 +00:00
26 lines
631 B
Terraform
26 lines
631 B
Terraform
variable "folder_id" {}
|
|
|
|
variable "cloud_id" {}
|
|
|
|
variable "domain" {
|
|
description = "Domain to issue TLS certificates for with Let's Encrypt"
|
|
type = string
|
|
}
|
|
|
|
variable "cluster_domain" {
|
|
type = string
|
|
default = "k8s.nlb.infra.itqdev.xyz"
|
|
}
|
|
|
|
variable "frontend_domain" {
|
|
description = "Domain to serve frontend from (must equal domain or *.domain), default: domain"
|
|
type = string
|
|
default = null
|
|
}
|
|
|
|
variable "frontend_develop_domain" {
|
|
description = "Domain to serve develop version of frontend from (must equal domain or *.domain), default: dev.domain"
|
|
type = string
|
|
default = null
|
|
}
|