We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b5aa1a commit e70d967Copy full SHA for e70d967
quickstart/101-managed-instance/main.tf
@@ -55,9 +55,6 @@ resource "azurerm_route_table" "example" {
55
location = azurerm_resource_group.example.location
56
resource_group_name = azurerm_resource_group.example.name
57
disable_bgp_route_propagation = false
58
- depends_on = [
59
- azurerm_subnet.example,
60
- ]
61
}
62
63
# Associate subnet and the route table
@@ -78,9 +75,4 @@ resource "azurerm_mssql_managed_instance" "example" {
78
75
sku_name = var.sku_name
79
76
vcores = var.vcores
80
77
storage_size_in_gb = var.storage_size_in_gb
81
-
82
83
- azurerm_subnet_network_security_group_association.example,
84
- azurerm_subnet_route_table_association.example,
85
86
0 commit comments