Skip to content

Commit

Permalink
RISC-890 Fix lint.
Browse files Browse the repository at this point in the history
  • Loading branch information
Koen Hillen authored and Koen Hillen committed Jul 16, 2024
1 parent 47a62f3 commit 00648a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/azure/web_app_linux/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,12 @@ resource "azurerm_app_service_custom_hostname_binding" "custom_domain" {
}

resource "azurerm_app_service_managed_certificate" "custom_hostname_certificate" {
for_each = azurerm_app_service_custom_hostname_binding.custom_domain
for_each = azurerm_app_service_custom_hostname_binding.custom_domain
custom_hostname_binding_id = each.value.id
}

resource "azurerm_app_service_certificate_binding" "custom_hostname_certificate_binding" {
for_each = azurerm_app_service_custom_hostname_binding.custom_domain
for_each = azurerm_app_service_custom_hostname_binding.custom_domain
hostname_binding_id = each.value.id
certificate_id = azurerm_app_service_managed_certificate.custom_hostname_certificate[each.key].id
ssl_state = "SniEnabled"
Expand Down

0 comments on commit 00648a1

Please sign in to comment.