Skip to content

Commit

Permalink
refactor: using pulumi.ResourceOptions on docker.RemoteImage to use a…
Browse files Browse the repository at this point in the history
… custom Pulumi Docker provider stack/cloud_run_images.py
  • Loading branch information
tmeckel committed Jul 6, 2024
1 parent 5f96911 commit b792355
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions stack/cloud_run_images.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ def construct_name_images(resource_name: str) -> str:
pull_triggers=[
cloud_run_offset_tile_registry_image.sha256_digest,
],
opts=pulumi.ResourceOptions(
provider=gcr_docker_provider,
),
)


Expand All @@ -69,6 +72,9 @@ def construct_name_images(resource_name: str) -> str:
pull_triggers=[
cloud_run_orchestrator_registry_image.sha256_digest,
],
opts=pulumi.ResourceOptions(
provider=gcr_docker_provider,
),
)

cloud_run_tipg_image = docker.RemoteImage(
Expand All @@ -77,6 +83,9 @@ def construct_name_images(resource_name: str) -> str:
pull_triggers=[
cloud_run_tipg_registry_image.sha256_digest,
],
opts=pulumi.ResourceOptions(
provider=gcr_docker_provider,
),
)


Expand Down

0 comments on commit b792355

Please sign in to comment.