Skip to content

Commit 274d09a

Browse files
committed
Fix example, test.
1 parent dd6d21b commit 274d09a

File tree

2 files changed

+2
-2
lines changed
  • examples/mysql-and-postgres-private
  • test/fixtures/safer-mysql-simple

2 files changed

+2
-2
lines changed

examples/mysql-and-postgres-private/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ module "safer-mysql-db" {
130130
vpc_network = google_compute_network.default.self_link
131131

132132
// Used to enforce ordering in the creation of resources.
133-
module_depends_on = module.private-service-access.peering_completed
133+
module_depends_on = [module.private-service-access.peering_completed]
134134
}
135135

136136

test/fixtures/safer-mysql-simple/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,5 @@ module "safer-mysql-db" {
8282
vpc_network = module.network-safer-mysql-simple.network_self_link
8383

8484
// Optional: used to enforce ordering in the creation of resources.
85-
module_depends_on = module.private-service-access.peering_completed
85+
module_depends_on = [module.private-service-access.peering_completed]
8686
}

0 commit comments

Comments
 (0)