chore: restructured project

This commit is contained in:
ITQ
2025-10-31 15:20:30 +03:00
parent 804444ab74
commit 0dc6551e7c
37 changed files with 28 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
variable "folder_id" {}
variable "cloud_id" {}
variable "domain" {
description = "Domain to issue TLS certificates for with Let's Encrypt"
type = string
}
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
}