modules/onboard-app/cloudbuild.yaml (17 lines of code) (raw):
# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
timeout: 14400s # 2hr
#substitutions:
# _PROJECT_ID: ${PROJECT_ID}
# _: ${}
# _GITHUB_ORG: ${github_org}
# _GITHUB_USER: ${github_user}
# _GITHUB_EMAIL: ${github_email}
# _GITHUB_TOKEN: ${github_token}
tags:
- onboard-app
steps:
- name: "hashicorp/terraform:1.10.2"
id: "create-infra"
entrypoint: "sh"
dir: "modules/onboard-app/"
args:
- "-xe"
- "-c"
- |
terraform init -backend-config="bucket=${_PROJECT_ID}"
terraform apply -var="project_id=${_PROJECT_ID}" \
-var="app_name=${_APP_NAME}" -var="github_org=${_GITHUB_ORG}" -var="github_user=${_GITHUB_USER}" \
-var="github_email=${_GITHUB_EMAIL}" -var="github_token=${_GITHUB_TOKEN}" \
--auto-approve