GitLab
https://about.gitlab.com/images/press/press-kit-icon.svg
From planning to production, GitLab brings teams together to shorten cycle times, reduce costs, strengthen security, and increase developer productivity.
code: .gitlab-ci.yml
# ジョブキーワードのカスタムデフォルト値
defaults:
image: alpine
# 他のYAMLファイルからの設定インポートする
services:
- postgres:latest
variables:
POSTGRES_DB: postgres
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
# template として使うものを定義する
.validate:
stage: terraform-static-test
script:
- cd env/${ENV}
- terraform init -backend=false
- terraform validate
validate-dev:
extends: .validate
variables:
ENV: dev
validate-stg:
extends: .validate
variables:
ENV: stg
validate-prod:
extends: .validate
variables:
ENV: prod