swift conn
unknown
yaml
2 years ago
309 B
8
Indexable
resource "azurerm_app_service_virtual_network_swift_connection" "this" {
app_service_id = azurerm_function_app.example.id
subnet_id = azurerm_subnet.example.id
depends_on = [azurerm_subnet.example, azurerm_function_app.example]
lifecycle {
ignore_changes = [
subnet_id,
]
}
}Editor is loading...
Leave a Comment