add hhv
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Torma Kristóf 2022-05-21 20:46:41 +02:00
parent a583903906
commit 0b846ae8d2
2 changed files with 18 additions and 1 deletions

View File

@ -27,3 +27,8 @@ resource "azurerm_resource_group" "rg-kmlabz-staticwebapp" {
name = "rg-kmlabz-staticwebapp"
location = "westeurope"
}
resource "azurerm_resource_group" "rg-hhv-staticwebapp" {
name = "rg-kmlabz-staticwebapp"
location = "westeurope"
}

View File

@ -56,4 +56,16 @@ resource "azurerm_static_site_custom_domain" "wwwkmlabzcom" {
static_site_id = azurerm_static_site.kmlabz.id
domain_name = "www.kmlabz.com"
validation_type = "cname-delegation"
}
}
resource "azurerm_static_site" "hhv" {
name = "hhv"
resource_group_name = azurerm_resource_group.rg-hhv-staticwebapp.name
location = azurerm_resource_group.rg-hhv-staticwebapp.location
}
resource "azurerm_static_site_custom_domain" "hhvtormakristofeu" {
static_site_id = azurerm_static_site.hhv.id
domain_name = "hhv.tormakristof.eu"
validation_type = "cname-delegation"
}