Skip to content

Commit

Permalink
Fix broken validate call for azure example (#1123)
Browse files Browse the repository at this point in the history
  • Loading branch information
yorinasub17 authored May 23, 2022
1 parent 3f80236 commit ab8a34b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions examples/azure/terraform-azure-frontdoor-example/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,12 @@ resource "azurerm_resource_group" "rg" {
# ---------------------------------------------------------------------------------------------------------------------

resource "azurerm_frontdoor" "frontdoor" {
name = "terratest-afd-${var.postfix}"
resource_group_name = azurerm_resource_group.rg.name
enforce_backend_pools_certificate_name_check = false
name = "terratest-afd-${var.postfix}"
resource_group_name = azurerm_resource_group.rg.name

backend_pool_settings {
enforce_backend_pools_certificate_name_check = false
}

routing_rule {
name = "terratestRoutingRule1"
Expand Down

0 comments on commit ab8a34b

Please sign in to comment.