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
+11
View File
@@ -0,0 +1,11 @@
resource "yandex_cm_certificate" "default" {
name = replace(lower(var.domain), ".", "-")
description = "Default certificate for all resources"
deletion_protection = true
domains = tolist([var.domain, "*.${var.domain}"])
managed {
challenge_type = "DNS_CNAME"
}
}