chore(terraform): refactored configuration

This commit is contained in:
ITQ
2025-10-31 15:12:35 +03:00
parent 8351a2c667
commit 804444ab74
18 changed files with 143 additions and 171 deletions
+9 -7
View File
@@ -2,17 +2,19 @@ variable "folder_id" {}
variable "cloud_id" {}
variable "resources_prefix" {
type = string
default = ""
}
variable "domain" {
description = "Domain to issue TLS certificates for with Let's Encrypt"
type = string
}
variable "ssh_public_key_path" {
description = "This public key will be placed on all nodes"
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
}