Skip to content

Commit

Permalink
chore(deps): Update Terraform terraform-google-modules/project-factor…
Browse files Browse the repository at this point in the history
…y/google to v16 (#179)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Grant Sorbo <gtsorbo@google.com>
  • Loading branch information
renovate[bot] and gtsorbo authored Aug 27, 2024
1 parent 999330d commit 75da564
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build/int.cloudbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -96,17 +96,17 @@ steps:
# examples/oidc-simple
- id: apply-oidc
name: 'gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
args: ['/bin/bash', '-c', 'cd test/integration && RUN_STAGE=apply go test -v -run TestOIDCSimple ./... -p 1']
args: ['/bin/bash', '-c', 'cft test run TestOIDCSimple --stage apply --verbose']
waitFor:
- init-all
- id: verify-oidc
name: 'gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
args: ['/bin/bash', '-c', 'cd test/integration && RUN_STAGE=verify go test -v -run TestOIDCSimple ./... -p 1']
args: ['/bin/bash', '-c', 'cft test run TestOIDCSimple --stage verify --verbose']
waitFor:
- apply-oidc
- id: destroy-oidc
name: 'gcr.io/cloud-foundation-cicd/$_DOCKER_IMAGE_DEVELOPER_TOOLS:$_DOCKER_TAG_VERSION_DEVELOPER_TOOLS'
args: ['/bin/bash', '-c', 'cd test/integration && RUN_STAGE=teardown go test -v -run TestOIDCSimple ./... -p 1']
args: ['/bin/bash', '-c', 'cft test run TestOIDCSimple --stage destroy --verbose']
waitFor:
- verify-oidc
tags:
Expand Down
6 changes: 3 additions & 3 deletions test/setup/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

module "project" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

name = "ci-terraform-gh-runners"
random_project_id = "true"
Expand All @@ -35,7 +35,7 @@ module "project" {

module "project-gke" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

name = "ci-runners-gke"
random_project_id = "true"
Expand All @@ -56,7 +56,7 @@ module "project-gke" {

module "project-mig-container-vm" {
source = "terraform-google-modules/project-factory/google"
version = "~> 15.0"
version = "~> 16.0"

name = "ci-runners-c-mig"
random_project_id = "true"
Expand Down

0 comments on commit 75da564

Please sign in to comment.