Skip to content

Commit

Permalink
Removing depends_on in examples (#195)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiaweitao001 authored Nov 23, 2022
1 parent 76e4b34 commit 1ef2b6b
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions examples/complete/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,6 @@ module "ubuntuservers" {
certificate_url = azurerm_key_vault_certificate.test.secret_id
}
]

depends_on = [azurerm_resource_group.test]
}

module "debianservers" {
Expand Down Expand Up @@ -113,8 +111,6 @@ module "debianservers" {
name = "extra2"
}
]

depends_on = [azurerm_resource_group.test]
}

module "debianservers2" {
Expand All @@ -130,8 +126,6 @@ module "debianservers2" {
delete_os_disk_on_termination = true
ssh_key = ""
ssh_key_values = [file("${path.module}/monica_id_rsa.pub")]

depends_on = [azurerm_resource_group.test]
}

module "windowsservers" {
Expand All @@ -155,6 +149,4 @@ module "windowsservers" {
certificate_store = "My"
}
]

depends_on = [azurerm_resource_group.test]
}

0 comments on commit 1ef2b6b

Please sign in to comment.