Skip to content

Commit

Permalink
Unique bucket names
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaraphael committed Sep 23, 2023
1 parent 90bde39 commit 2051589
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion stack/cloud_function_ais_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
stack = pulumi.get_stack()
# We will store the source code to the Cloud Function in a Google Cloud Storage bucket.
bucket = storage.Bucket(
construct_name("bucket-cloud-function"),
construct_name("bucket-cloud-function-ais"),
location="EU",
labels={"pulumi": "true", "environment": pulumi.get_stack()},
)
Expand Down
2 changes: 1 addition & 1 deletion stack/cloud_function_scene_relevancy.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
stack = pulumi.get_stack()
# We will store the source code to the Cloud Function in a Google Cloud Storage bucket.
bucket = storage.Bucket(
construct_name("bucket-cloud-function"),
construct_name("bucket-cloud-function-relevancy"),
location="EU",
labels={"pulumi": "true", "environment": pulumi.get_stack()},
)
Expand Down

0 comments on commit 2051589

Please sign in to comment.