Skip to content

Commit

Permalink
Add implicit dependency between objects and dependent resource(s) in …
Browse files Browse the repository at this point in the history
…examples and acc tests (GoogleCloudPlatform#7195)
  • Loading branch information
SarahFrench authored and kubalaguna committed Feb 27, 2023
1 parent ff29549 commit 40ee56b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resource "google_app_engine_standard_app_version" "version" {
}
deployment {
zip {
source_url = "https://storage.googleapis.com/${google_storage_bucket.bucket.name}/hello-world.zip"
source_url = "https://storage.googleapis.com/${google_storage_bucket.bucket.name}/${google_storage_bucket_object.object.output_name}"
}
}
env_variables = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ resource "google_app_engine_standard_app_version" "version" {
}
deployment {
zip {
source_url = "https://storage.googleapis.com/${google_storage_bucket.bucket.name}/hello-world.zip"
source_url = "https://storage.googleapis.com/${google_storage_bucket.bucket.name}/${google_storage_bucket_object.object.output_name}"
}
}
env_variables = {
Expand Down

0 comments on commit 40ee56b

Please sign in to comment.