Skip to content

Commit

Permalink
fix failing acc test
Browse files Browse the repository at this point in the history
  • Loading branch information
jiaweitao001 committed Jul 31, 2024
1 parent b7d89b4 commit d6b62c9
Showing 1 changed file with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -544,6 +544,13 @@ resource "azurerm_linux_web_app" "test" {
}
}
resource "azurerm_app_configuration" "test" {
name = "testacc-appconf%[3]d"
resource_group_name = azurerm_resource_group.test.name
location = azurerm_resource_group.test.location
sku = "free"
}
resource "azurerm_app_service_connection" "test" {
name = "acctestserviceconnector%[3]d"
app_service_id = azurerm_linux_web_app.test.id
Expand All @@ -555,9 +562,9 @@ resource "azurerm_app_service_connection" "test" {
}
scope = "default"
configuration {
action = "optOut"
action = "enable"
configuration_store {
app_configuration_id = "foo"
app_configuration_id = azurerm_app_configuration.test.id
}
}
public_network_solution {
Expand Down

0 comments on commit d6b62c9

Please sign in to comment.