2021-10-27 15:23:28 +05:30
|
|
|
# Terraform/Base.latest
|
|
|
|
#
|
|
|
|
# The purpose of this template is to provide flexibility to the user so
|
|
|
|
# they are able to only include the jobs that they find interesting.
|
|
|
|
#
|
|
|
|
# Therefore, this template is not supposed to run any jobs. The idea is to only
|
|
|
|
# create hidden jobs. See: https://docs.gitlab.com/ee/ci/yaml/#hide-jobs
|
|
|
|
#
|
|
|
|
# There is a more opinionated template which we suggest the users to abide,
|
|
|
|
# which is the lib/gitlab/ci/templates/Terraform.latest.gitlab-ci.yml
|
|
|
|
|
|
|
|
image:
|
|
|
|
name: registry.gitlab.com/gitlab-org/terraform-images/releases/terraform:1.0.3
|
|
|
|
|
|
|
|
variables:
|
|
|
|
TF_ROOT: ${CI_PROJECT_DIR} # The relative path to the root directory of the Terraform project
|
|
|
|
TF_STATE_NAME: ${TF_STATE_NAME:-default} # The name of the state file used by the GitLab Managed Terraform state backend
|
|
|
|
|
|
|
|
cache:
|
|
|
|
key: "${TF_ROOT}"
|
|
|
|
paths:
|
|
|
|
- ${TF_ROOT}/.terraform/
|
|
|
|
|
|
|
|
.init: &init
|
|
|
|
stage: init
|
|
|
|
script:
|
2022-05-07 20:08:51 +05:30
|
|
|
- cd "${TF_ROOT}"
|
2021-10-27 15:23:28 +05:30
|
|
|
- gitlab-terraform init
|
|
|
|
|
|
|
|
.validate: &validate
|
|
|
|
stage: validate
|
|
|
|
script:
|
2022-05-07 20:08:51 +05:30
|
|
|
- cd "${TF_ROOT}"
|
2021-10-27 15:23:28 +05:30
|
|
|
- gitlab-terraform validate
|
|
|
|
|
|
|
|
.build: &build
|
|
|
|
stage: build
|
|
|
|
script:
|
2022-05-07 20:08:51 +05:30
|
|
|
- cd "${TF_ROOT}"
|
2021-10-27 15:23:28 +05:30
|
|
|
- gitlab-terraform plan
|
|
|
|
- gitlab-terraform plan-json
|
|
|
|
artifacts:
|
|
|
|
paths:
|
|
|
|
- ${TF_ROOT}/plan.cache
|
|
|
|
reports:
|
|
|
|
terraform: ${TF_ROOT}/plan.json
|
|
|
|
|
|
|
|
.deploy: &deploy
|
|
|
|
stage: deploy
|
|
|
|
script:
|
2022-05-07 20:08:51 +05:30
|
|
|
- cd "${TF_ROOT}"
|
2021-10-27 15:23:28 +05:30
|
|
|
- gitlab-terraform apply
|
|
|
|
when: manual
|
|
|
|
only:
|
|
|
|
variables:
|
|
|
|
- $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
|
|
|
|
|
|
|
|
.destroy: &destroy
|
|
|
|
stage: cleanup
|
|
|
|
script:
|
2022-05-07 20:08:51 +05:30
|
|
|
- cd "${TF_ROOT}"
|
2021-10-27 15:23:28 +05:30
|
|
|
- gitlab-terraform destroy
|
|
|
|
when: manual
|