fix race condition in no_provides_in_main test (#33616)

This commit is contained in:
Liam Cervante
2023-08-02 11:02:26 +02:00
committed by GitHub
parent d7e07e66fc
commit 8b764f2e1b

View File

@@ -16,4 +16,8 @@ resource "test_resource" "primary" {
resource "test_resource" "secondary" {
provider = test.secondary
value = "bar"
depends_on = [
test_resource.primary,
]
}