First commit

This commit is contained in:
2024-05-19 15:25:41 -05:00
commit c8e909ae88
29 changed files with 7715 additions and 0 deletions

5
infrastructure/dns.tf Normal file
View File

@@ -0,0 +1,5 @@
resource "azurerm_static_web_app_custom_domain" "static_web_app_custom_domain_txt" {
static_web_app_id = module.static_web_app.id
domain_name = var.DOMAIN_NAME
validation_type = "dns-txt-token"
}