Skip to content

Commit

Permalink
Update docker image version for cloud build triggers (#1160)
Browse files Browse the repository at this point in the history
  • Loading branch information
fbeevikm committed Sep 20, 2022
1 parent d961fe3 commit e2f89ec
Show file tree
Hide file tree
Showing 18 changed files with 48 additions and 48 deletions.
6 changes: 3 additions & 3 deletions examples/tfengine/generated/devops/cicd/configs/tf-apply.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions examples/tfengine/generated/devops/cicd/configs/tf-plan.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ substitutions:
_LOGS_BUCKET: ""

steps:
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: terraform
args: ["version"]
id: Terraform version

- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: bash
args: ["./cicd/configs/import.sh", "-d", "${_MANAGED_DIRS}"]
dir: "${_TERRAFORM_ROOT}"
id: Import existing projects

- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: bash
args: ["./cicd/configs/run.sh", "-d", "${_MANAGED_DIRS}", "-a", "init", "-a", "plan -out=plan.tfplan -input=false", "-a", "apply -input=false plan.tfplan"]
dir: "${_TERRAFORM_ROOT}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ substitutions:
_LOGS_BUCKET: ""

steps:
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: terraform
args: ["version"]
id: Terraform version

- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: bash
args: ["./cicd/configs/run.sh", "-d", "${_MANAGED_DIRS}", "-a", "init -lock=false", "-a", "plan -lock=false -out=plan.tfplan"]
dir: "${_TERRAFORM_ROOT}"
id: Speculative plan

# Check for delete operations as an FYI, it won't fail the build.
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: bash
args: ["./cicd/configs/tf-deletion-check.sh", "./cicd/configs/tf-deletion-allowlist.txt"]
dir: "${_TERRAFORM_ROOT}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ substitutions:
_LOGS_BUCKET: ""

steps:
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: terraform
args: ["version"]
id: Terraform version

- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: terraform
args: ["fmt", "-recursive", "-check"]
dir: "${_TERRAFORM_ROOT}"
id: Terraform configs format check

- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: bash
args: ["./cicd/configs/run.sh", "-d", "${_MANAGED_DIRS}", "-a", "init -backend=false", "-a", "validate"]
dir: "${_TERRAFORM_ROOT}"
Expand Down
6 changes: 3 additions & 3 deletions examples/tfengine/generated/team/cicd/configs/tf-apply.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ substitutions:
_LOGS_BUCKET: ""

steps:
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: terraform
args: ["version"]
id: Terraform version

- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: bash
args: ["./cicd/configs/import.sh", "-d", "${_MANAGED_DIRS}"]
dir: "${_TERRAFORM_ROOT}"
id: Import existing projects

- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: bash
args: ["./cicd/configs/run.sh", "-d", "${_MANAGED_DIRS}", "-a", "init", "-a", "plan -out=plan.tfplan -input=false", "-a", "apply -input=false plan.tfplan"]
dir: "${_TERRAFORM_ROOT}"
Expand Down
6 changes: 3 additions & 3 deletions examples/tfengine/generated/team/cicd/configs/tf-plan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ substitutions:
_LOGS_BUCKET: ""

steps:
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: terraform
args: ["version"]
id: Terraform version

- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: bash
args: ["./cicd/configs/run.sh", "-d", "${_MANAGED_DIRS}", "-a", "init -lock=false", "-a", "plan -lock=false -out=plan.tfplan"]
dir: "${_TERRAFORM_ROOT}"
id: Speculative plan

# Check for delete operations as an FYI, it won't fail the build.
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: bash
args: ["./cicd/configs/tf-deletion-check.sh", "./cicd/configs/tf-deletion-allowlist.txt"]
dir: "${_TERRAFORM_ROOT}"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@ substitutions:
_LOGS_BUCKET: ""

steps:
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: terraform
args: ["version"]
id: Terraform version

- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: terraform
args: ["fmt", "-recursive", "-check"]
dir: "${_TERRAFORM_ROOT}"
id: Terraform configs format check

- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:d881ce4ff2a73fa0877dd357af798a431a601b2ccfe5a140837bcb883cd3f011"
- name: "gcr.io/cloud-foundation-cicd/cft/developer-tools-light@sha256:42d746379f734577e1f69c6f1c848928da65aa1ab37d56a3430abc23d6cd1954"
entrypoint: bash
args: ["./cicd/configs/run.sh", "-d", "${_MANAGED_DIRS}", "-a", "init -backend=false", "-a", "validate"]
dir: "${_TERRAFORM_ROOT}"
Expand Down
Loading

0 comments on commit e2f89ec

Please sign in to comment.