Skip to content

Commit e70d967

Browse files
authored
remove depends on clauses
1 parent 3b5aa1a commit e70d967

File tree

1 file changed

+0
-8
lines changed
  • quickstart/101-managed-instance

1 file changed

+0
-8
lines changed

quickstart/101-managed-instance/main.tf

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ resource "azurerm_route_table" "example" {
5555
location = azurerm_resource_group.example.location
5656
resource_group_name = azurerm_resource_group.example.name
5757
disable_bgp_route_propagation = false
58-
depends_on = [
59-
azurerm_subnet.example,
60-
]
6158
}
6259

6360
# Associate subnet and the route table
@@ -78,9 +75,4 @@ resource "azurerm_mssql_managed_instance" "example" {
7875
sku_name = var.sku_name
7976
vcores = var.vcores
8077
storage_size_in_gb = var.storage_size_in_gb
81-
82-
depends_on = [
83-
azurerm_subnet_network_security_group_association.example,
84-
azurerm_subnet_route_table_association.example,
85-
]
8678
}

0 commit comments

Comments
 (0)