Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
njuCZ committed Nov 18, 2019
1 parent 8d8bbeb commit b0b358d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ func TestAccAzureRMAppServiceVirtualNetworkConnection_basic(t *testing.T) {
testCheckAzureRMAppServiceExists(resourceName),
resource.TestCheckResourceAttrSet(resourceName, "name"),
resource.TestCheckResourceAttrSet(resourceName, "id"),
resource.TestCheckResourceAttrSet(resourceName, "type"),
resource.TestCheckResourceAttrSet(resourceName, "certificate_blob"),
resource.TestCheckResourceAttrSet(resourceName, "certificate_thumbprint"),
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ resource "azurerm_app_service_virtual_network_connection" "example" {
app_service_name = "${azurerm_app_service.example.name}"
resource_group_name = "${azurerm_resource_group.example.name}"
virtual_network_id = "${azurerm_virtual_network.example.id}"
depends_on = [
azurerm_virtual_network_gateway.example,
azurerm_app_service.example
]
}
```

Expand Down

0 comments on commit b0b358d

Please sign in to comment.