27 lines
646 B
YAML
27 lines
646 B
YAML
# To contribute improvements to CI/CD templates, please follow the Development guide at:
|
|
# https://docs.gitlab.com/ee/development/cicd/templates.html
|
|
# This specific template is located at:
|
|
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Terraform.gitlab-ci.yml
|
|
|
|
include:
|
|
- template: Terraform/Base.gitlab-ci.yml # https://gitlab.com/gitlab-org/gitlab/blob/master/lib/gitlab/ci/templates/Terraform/Base.latest.gitlab-ci.yml
|
|
|
|
stages:
|
|
- init
|
|
- validate
|
|
- build
|
|
- deploy
|
|
|
|
init:
|
|
extends: .init
|
|
|
|
validate:
|
|
extends: .validate
|
|
|
|
build:
|
|
extends: .build
|
|
|
|
deploy:
|
|
extends: .deploy
|
|
dependencies:
|
|
- build
|