Initial commit
This commit is contained in:
224
skills/assets/workflows/github-actions-terraform.yml
Normal file
224
skills/assets/workflows/github-actions-terraform.yml
Normal file
@@ -0,0 +1,224 @@
|
||||
name: Terraform CI/CD
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main, master]
|
||||
paths:
|
||||
- '**.tf'
|
||||
- '**.tfvars'
|
||||
- '.github/workflows/terraform.yml'
|
||||
push:
|
||||
branches: [main, master]
|
||||
paths:
|
||||
- '**.tf'
|
||||
- '**.tfvars'
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
TF_VERSION: '1.5.0'
|
||||
TF_WORKING_DIR: '.' # Change to your terraform directory
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
id-token: write # Required for OIDC
|
||||
|
||||
jobs:
|
||||
validate:
|
||||
name: Validate
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Terraform
|
||||
uses: hashicorp/setup-terraform@v3
|
||||
with:
|
||||
terraform_version: ${{ env.TF_VERSION }}
|
||||
|
||||
- name: Terraform Format Check
|
||||
id: fmt
|
||||
run: terraform fmt -check -recursive
|
||||
working-directory: ${{ env.TF_WORKING_DIR }}
|
||||
continue-on-error: true
|
||||
|
||||
- name: Terraform Init
|
||||
id: init
|
||||
run: terraform init -backend=false
|
||||
working-directory: ${{ env.TF_WORKING_DIR }}
|
||||
|
||||
- name: Terraform Validate
|
||||
id: validate
|
||||
run: terraform validate -no-color
|
||||
working-directory: ${{ env.TF_WORKING_DIR }}
|
||||
|
||||
- name: Comment PR - Validation Results
|
||||
if: github.event_name == 'pull_request'
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
script: |
|
||||
const output = `#### Terraform Format and Style 🖌\`${{ steps.fmt.outcome }}\`
|
||||
#### Terraform Initialization ⚙️\`${{ steps.init.outcome }}\`
|
||||
#### Terraform Validation 🤖\`${{ steps.validate.outcome }}\`
|
||||
|
||||
*Pusher: @${{ github.actor }}, Action: \`${{ github.event_name }}\`, Working Directory: \`${{ env.TF_WORKING_DIR }}\`, Workflow: \`${{ github.workflow }}\`*`;
|
||||
|
||||
github.rest.issues.createComment({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: output
|
||||
})
|
||||
|
||||
lint:
|
||||
name: Lint
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup TFLint
|
||||
uses: terraform-linters/setup-tflint@v4
|
||||
|
||||
- name: Init TFLint
|
||||
run: tflint --init
|
||||
|
||||
- name: Run TFLint
|
||||
run: tflint -f compact
|
||||
working-directory: ${{ env.TF_WORKING_DIR }}
|
||||
|
||||
security:
|
||||
name: Security Scan
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Run Checkov
|
||||
uses: bridgecrewio/checkov-action@master
|
||||
with:
|
||||
directory: ${{ env.TF_WORKING_DIR }}
|
||||
framework: terraform
|
||||
output_format: sarif
|
||||
output_file_path: reports/checkov.sarif
|
||||
soft_fail: true # Don't fail the build, just report
|
||||
|
||||
- name: Upload Checkov Results
|
||||
if: always()
|
||||
uses: github/codeql-action/upload-sarif@v3
|
||||
with:
|
||||
sarif_file: reports/checkov.sarif
|
||||
|
||||
plan:
|
||||
name: Plan
|
||||
runs-on: ubuntu-latest
|
||||
needs: [validate, lint]
|
||||
if: github.event_name == 'pull_request'
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Configure AWS Credentials (OIDC)
|
||||
uses: aws-actions/configure-aws-credentials@v4
|
||||
with:
|
||||
role-to-assume: ${{ secrets.AWS_ROLE_ARN }}
|
||||
aws-region: us-east-1
|
||||
|
||||
# Alternative: Use access keys (not recommended)
|
||||
# - name: Configure AWS Credentials
|
||||
# uses: aws-actions/configure-aws-credentials@v4
|
||||
# with:
|
||||
# aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
||||
# aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||
# aws-region: us-east-1
|
||||
|
||||
- name: Setup Terraform
|
||||
uses: hashicorp/setup-terraform@v3
|
||||
with:
|
||||
terraform_version: ${{ env.TF_VERSION }}
|
||||
|
||||
- name: Terraform Init
|
||||
run: terraform init
|
||||
working-directory: ${{ env.TF_WORKING_DIR }}
|
||||
|
||||
- name: Terraform Plan
|
||||
id: plan
|
||||
run: |
|
||||
terraform plan -no-color -out=tfplan
|
||||
terraform show -no-color tfplan > plan_output.txt
|
||||
working-directory: ${{ env.TF_WORKING_DIR }}
|
||||
|
||||
- name: Comment PR - Plan
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
script: |
|
||||
const fs = require('fs');
|
||||
const plan = fs.readFileSync('${{ env.TF_WORKING_DIR }}/plan_output.txt', 'utf8');
|
||||
const maxLength = 65000;
|
||||
const truncatedPlan = plan.length > maxLength ? plan.substring(0, maxLength) + '\n... (truncated)' : plan;
|
||||
|
||||
const output = `#### Terraform Plan 📖
|
||||
<details><summary>Show Plan</summary>
|
||||
|
||||
\`\`\`terraform
|
||||
${truncatedPlan}
|
||||
\`\`\`
|
||||
|
||||
</details>
|
||||
|
||||
*Pusher: @${{ github.actor }}, Action: \`${{ github.event_name }}\`, Working Directory: \`${{ env.TF_WORKING_DIR }}\`*`;
|
||||
|
||||
github.rest.issues.createComment({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: output
|
||||
})
|
||||
|
||||
- name: Upload Plan
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: tfplan
|
||||
path: ${{ env.TF_WORKING_DIR }}/tfplan
|
||||
retention-days: 5
|
||||
|
||||
apply:
|
||||
name: Apply
|
||||
runs-on: ubuntu-latest
|
||||
needs: [validate, lint, security]
|
||||
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')
|
||||
environment: production # Requires approval in GitHub settings
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Configure AWS Credentials (OIDC)
|
||||
uses: aws-actions/configure-aws-credentials@v4
|
||||
with:
|
||||
role-to-assume: ${{ secrets.AWS_ROLE_ARN }}
|
||||
aws-region: us-east-1
|
||||
|
||||
- name: Setup Terraform
|
||||
uses: hashicorp/setup-terraform@v3
|
||||
with:
|
||||
terraform_version: ${{ env.TF_VERSION }}
|
||||
|
||||
- name: Terraform Init
|
||||
run: terraform init
|
||||
working-directory: ${{ env.TF_WORKING_DIR }}
|
||||
|
||||
- name: Terraform Apply
|
||||
run: terraform apply -auto-approve
|
||||
working-directory: ${{ env.TF_WORKING_DIR }}
|
||||
|
||||
- name: Notify Success
|
||||
if: success()
|
||||
run: |
|
||||
echo "✅ Terraform apply completed successfully"
|
||||
# Add notification logic here (Slack, email, etc.)
|
||||
|
||||
- name: Notify Failure
|
||||
if: failure()
|
||||
run: |
|
||||
echo "❌ Terraform apply failed"
|
||||
# Add notification logic here (Slack, email, etc.)
|
||||
236
skills/assets/workflows/github-actions-terragrunt.yml
Normal file
236
skills/assets/workflows/github-actions-terragrunt.yml
Normal file
@@ -0,0 +1,236 @@
|
||||
name: Terragrunt CI/CD
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main, master]
|
||||
paths:
|
||||
- '**.tf'
|
||||
- '**.hcl'
|
||||
- '**.tfvars'
|
||||
push:
|
||||
branches: [main, master]
|
||||
paths:
|
||||
- '**.tf'
|
||||
- '**.hcl'
|
||||
- '**.tfvars'
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
environment:
|
||||
description: 'Environment to deploy'
|
||||
required: true
|
||||
type: choice
|
||||
options:
|
||||
- dev
|
||||
- staging
|
||||
- prod
|
||||
action:
|
||||
description: 'Action to perform'
|
||||
required: true
|
||||
type: choice
|
||||
options:
|
||||
- plan
|
||||
- apply
|
||||
- destroy
|
||||
|
||||
env:
|
||||
TF_VERSION: '1.5.0'
|
||||
TG_VERSION: '0.55.0'
|
||||
WORKING_DIR: 'environments' # Base directory for environments
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
pull-requests: write
|
||||
id-token: write
|
||||
|
||||
jobs:
|
||||
detect-changes:
|
||||
name: Detect Changed Modules
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
matrix: ${{ steps.set-matrix.outputs.matrix }}
|
||||
has-changes: ${{ steps.set-matrix.outputs.has-changes }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Get Changed Files
|
||||
id: changed-files
|
||||
uses: tj-actions/changed-files@v42
|
||||
with:
|
||||
files: |
|
||||
**/*.tf
|
||||
**/*.hcl
|
||||
**/*.tfvars
|
||||
|
||||
- name: Set Matrix
|
||||
id: set-matrix
|
||||
run: |
|
||||
# Find all directories with terragrunt.hcl that have changes
|
||||
changed_dirs=$(echo "${{ steps.changed-files.outputs.all_changed_files }}" | tr ' ' '\n' | xargs -I {} dirname {} | grep -E "environments/(dev|staging|prod)" | sort -u | jq -R -s -c 'split("\n")[:-1]')
|
||||
|
||||
if [ "$changed_dirs" = "[]" ]; then
|
||||
echo "has-changes=false" >> $GITHUB_OUTPUT
|
||||
else
|
||||
echo "has-changes=true" >> $GITHUB_OUTPUT
|
||||
echo "matrix={\"directory\":$changed_dirs}" >> $GITHUB_OUTPUT
|
||||
fi
|
||||
|
||||
validate:
|
||||
name: Validate
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event_name == 'pull_request'
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Terraform
|
||||
uses: hashicorp/setup-terraform@v3
|
||||
with:
|
||||
terraform_version: ${{ env.TF_VERSION }}
|
||||
terraform_wrapper: false
|
||||
|
||||
- name: Setup Terragrunt
|
||||
run: |
|
||||
wget -q https://github.com/gruntwork-io/terragrunt/releases/download/v${{ env.TG_VERSION }}/terragrunt_linux_amd64
|
||||
chmod +x terragrunt_linux_amd64
|
||||
sudo mv terragrunt_linux_amd64 /usr/local/bin/terragrunt
|
||||
terragrunt --version
|
||||
|
||||
- name: Terragrunt Format Check
|
||||
run: terragrunt hclfmt --terragrunt-check
|
||||
working-directory: ${{ env.WORKING_DIR }}
|
||||
continue-on-error: true
|
||||
|
||||
- name: Terragrunt Validate All
|
||||
run: terragrunt run-all validate --terragrunt-non-interactive
|
||||
working-directory: ${{ env.WORKING_DIR }}
|
||||
|
||||
plan:
|
||||
name: Plan - ${{ matrix.directory }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: [detect-changes, validate]
|
||||
if: needs.detect-changes.outputs.has-changes == 'true'
|
||||
strategy:
|
||||
matrix: ${{ fromJson(needs.detect-changes.outputs.matrix) }}
|
||||
fail-fast: false
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Terraform
|
||||
uses: hashicorp/setup-terraform@v3
|
||||
with:
|
||||
terraform_version: ${{ env.TF_VERSION }}
|
||||
terraform_wrapper: false
|
||||
|
||||
- name: Setup Terragrunt
|
||||
run: |
|
||||
wget -q https://github.com/gruntwork-io/terragrunt/releases/download/v${{ env.TG_VERSION }}/terragrunt_linux_amd64
|
||||
chmod +x terragrunt_linux_amd64
|
||||
sudo mv terragrunt_linux_amd64 /usr/local/bin/terragrunt
|
||||
|
||||
- name: Configure AWS Credentials
|
||||
uses: aws-actions/configure-aws-credentials@v4
|
||||
with:
|
||||
role-to-assume: ${{ secrets.AWS_ROLE_ARN }}
|
||||
aws-region: us-east-1
|
||||
|
||||
- name: Terragrunt Plan
|
||||
id: plan
|
||||
run: |
|
||||
terragrunt run-all plan --terragrunt-non-interactive -out=tfplan 2>&1 | tee plan_output.txt
|
||||
working-directory: ${{ matrix.directory }}
|
||||
continue-on-error: true
|
||||
|
||||
- name: Upload Plan Output
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: plan-${{ hashFiles(matrix.directory) }}
|
||||
path: ${{ matrix.directory }}/plan_output.txt
|
||||
retention-days: 5
|
||||
|
||||
- name: Comment PR
|
||||
if: github.event_name == 'pull_request'
|
||||
uses: actions/github-script@v7
|
||||
with:
|
||||
script: |
|
||||
const fs = require('fs');
|
||||
const planPath = '${{ matrix.directory }}/plan_output.txt';
|
||||
let plan = 'Plan output not available';
|
||||
|
||||
try {
|
||||
plan = fs.readFileSync(planPath, 'utf8');
|
||||
const maxLength = 65000;
|
||||
plan = plan.length > maxLength ? plan.substring(0, maxLength) + '\n... (truncated)' : plan;
|
||||
} catch (error) {
|
||||
plan = 'Error reading plan output: ' + error.message;
|
||||
}
|
||||
|
||||
const output = `#### Terragrunt Plan for \`${{ matrix.directory }}\`
|
||||
<details><summary>Show Plan</summary>
|
||||
|
||||
\`\`\`terraform
|
||||
${plan}
|
||||
\`\`\`
|
||||
|
||||
</details>
|
||||
|
||||
*Workflow: ${{ github.workflow }}, Actor: @${{ github.actor }}*`;
|
||||
|
||||
github.rest.issues.createComment({
|
||||
issue_number: context.issue.number,
|
||||
owner: context.repo.owner,
|
||||
repo: context.repo.repo,
|
||||
body: output
|
||||
});
|
||||
|
||||
apply:
|
||||
name: Apply - ${{ matrix.directory }}
|
||||
runs-on: ubuntu-latest
|
||||
needs: [detect-changes]
|
||||
if: |
|
||||
(github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master')) ||
|
||||
(github.event_name == 'workflow_dispatch' && github.event.inputs.action == 'apply')
|
||||
strategy:
|
||||
matrix:
|
||||
directory: ${{ github.event_name == 'workflow_dispatch' && fromJson(format('["environments/{0}"]', github.event.inputs.environment)) || fromJson(needs.detect-changes.outputs.matrix).directory }}
|
||||
fail-fast: false
|
||||
max-parallel: 1 # Apply one at a time
|
||||
environment:
|
||||
name: production # Configure approval in GitHub settings
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Setup Terraform
|
||||
uses: hashicorp/setup-terraform@v3
|
||||
with:
|
||||
terraform_version: ${{ env.TF_VERSION }}
|
||||
terraform_wrapper: false
|
||||
|
||||
- name: Setup Terragrunt
|
||||
run: |
|
||||
wget -q https://github.com/gruntwork-io/terragrunt/releases/download/v${{ env.TG_VERSION }}/terragrunt_linux_amd64
|
||||
chmod +x terragrunt_linux_amd64
|
||||
sudo mv terragrunt_linux_amd64 /usr/local/bin/terragrunt
|
||||
|
||||
- name: Configure AWS Credentials
|
||||
uses: aws-actions/configure-aws-credentials@v4
|
||||
with:
|
||||
role-to-assume: ${{ secrets.AWS_ROLE_ARN }}
|
||||
aws-region: us-east-1
|
||||
|
||||
- name: Terragrunt Apply
|
||||
run: |
|
||||
terragrunt run-all apply --terragrunt-non-interactive -auto-approve
|
||||
working-directory: ${{ matrix.directory }}
|
||||
|
||||
- name: Notify Success
|
||||
if: success()
|
||||
run: echo "✅ Terragrunt apply completed for ${{ matrix.directory }}"
|
||||
|
||||
- name: Notify Failure
|
||||
if: failure()
|
||||
run: echo "❌ Terragrunt apply failed for ${{ matrix.directory }}"
|
||||
184
skills/assets/workflows/gitlab-ci-terraform.yml
Normal file
184
skills/assets/workflows/gitlab-ci-terraform.yml
Normal file
@@ -0,0 +1,184 @@
|
||||
# GitLab CI/CD Pipeline for Terraform
|
||||
|
||||
variables:
|
||||
TF_VERSION: "1.5.0"
|
||||
TF_ROOT: ${CI_PROJECT_DIR} # Change to your terraform directory
|
||||
TF_STATE_NAME: default
|
||||
|
||||
image:
|
||||
name: hashicorp/terraform:$TF_VERSION
|
||||
entrypoint: [""]
|
||||
|
||||
cache:
|
||||
key: "$CI_COMMIT_REF_SLUG"
|
||||
paths:
|
||||
- ${TF_ROOT}/.terraform
|
||||
|
||||
before_script:
|
||||
- cd ${TF_ROOT}
|
||||
- terraform --version
|
||||
|
||||
stages:
|
||||
- validate
|
||||
- lint
|
||||
- security
|
||||
- plan
|
||||
- apply
|
||||
|
||||
# Validate Terraform configuration
|
||||
validate:
|
||||
stage: validate
|
||||
script:
|
||||
- terraform fmt -check -recursive
|
||||
- terraform init -backend=false
|
||||
- terraform validate
|
||||
rules:
|
||||
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
||||
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
||||
|
||||
# Lint with tflint
|
||||
tflint:
|
||||
stage: lint
|
||||
image:
|
||||
name: ghcr.io/terraform-linters/tflint:latest
|
||||
entrypoint: [""]
|
||||
script:
|
||||
- cd ${TF_ROOT}
|
||||
- tflint --init
|
||||
- tflint -f compact
|
||||
rules:
|
||||
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
||||
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
||||
|
||||
# Security scan with Checkov
|
||||
checkov:
|
||||
stage: security
|
||||
image:
|
||||
name: bridgecrew/checkov:latest
|
||||
entrypoint: [""]
|
||||
script:
|
||||
- checkov -d ${TF_ROOT} --framework terraform --output cli --soft-fail
|
||||
allow_failure: true
|
||||
rules:
|
||||
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
||||
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
||||
|
||||
# Plan Terraform changes
|
||||
plan:
|
||||
stage: plan
|
||||
script:
|
||||
- terraform init
|
||||
- terraform plan -out=tfplan
|
||||
- terraform show -no-color tfplan > plan_output.txt
|
||||
artifacts:
|
||||
name: plan
|
||||
paths:
|
||||
- ${TF_ROOT}/tfplan
|
||||
- ${TF_ROOT}/plan_output.txt
|
||||
reports:
|
||||
terraform: ${TF_ROOT}/tfplan
|
||||
expire_in: 7 days
|
||||
rules:
|
||||
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
||||
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
||||
when: manual
|
||||
|
||||
# Apply Terraform changes (manual trigger for production)
|
||||
apply:
|
||||
stage: apply
|
||||
script:
|
||||
- terraform init
|
||||
- terraform apply -auto-approve
|
||||
dependencies:
|
||||
- plan
|
||||
rules:
|
||||
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
||||
when: manual
|
||||
environment:
|
||||
name: production
|
||||
action: start
|
||||
|
||||
# Destroy infrastructure (manual trigger, protected)
|
||||
destroy:
|
||||
stage: apply
|
||||
script:
|
||||
- terraform init
|
||||
- terraform destroy -auto-approve
|
||||
rules:
|
||||
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
||||
when: manual
|
||||
environment:
|
||||
name: production
|
||||
action: stop
|
||||
|
||||
# ========================================
|
||||
# Multi-Environment Example
|
||||
# ========================================
|
||||
# Uncomment and customize for multiple environments
|
||||
|
||||
# .plan_template: &plan_template
|
||||
# stage: plan
|
||||
# script:
|
||||
# - terraform init
|
||||
# - terraform workspace select ${TF_WORKSPACE} || terraform workspace new ${TF_WORKSPACE}
|
||||
# - terraform plan -out=tfplan -var-file=environments/${TF_WORKSPACE}.tfvars
|
||||
# artifacts:
|
||||
# paths:
|
||||
# - ${TF_ROOT}/tfplan
|
||||
# expire_in: 7 days
|
||||
|
||||
# .apply_template: &apply_template
|
||||
# stage: apply
|
||||
# script:
|
||||
# - terraform init
|
||||
# - terraform workspace select ${TF_WORKSPACE}
|
||||
# - terraform apply -auto-approve tfplan
|
||||
# when: manual
|
||||
|
||||
# plan:dev:
|
||||
# <<: *plan_template
|
||||
# variables:
|
||||
# TF_WORKSPACE: dev
|
||||
# rules:
|
||||
# - if: '$CI_COMMIT_BRANCH == "develop"'
|
||||
|
||||
# apply:dev:
|
||||
# <<: *apply_template
|
||||
# variables:
|
||||
# TF_WORKSPACE: dev
|
||||
# rules:
|
||||
# - if: '$CI_COMMIT_BRANCH == "develop"'
|
||||
# environment:
|
||||
# name: dev
|
||||
|
||||
# plan:staging:
|
||||
# <<: *plan_template
|
||||
# variables:
|
||||
# TF_WORKSPACE: staging
|
||||
# rules:
|
||||
# - if: '$CI_COMMIT_BRANCH == "staging"'
|
||||
|
||||
# apply:staging:
|
||||
# <<: *apply_template
|
||||
# variables:
|
||||
# TF_WORKSPACE: staging
|
||||
# rules:
|
||||
# - if: '$CI_COMMIT_BRANCH == "staging"'
|
||||
# environment:
|
||||
# name: staging
|
||||
|
||||
# plan:prod:
|
||||
# <<: *plan_template
|
||||
# variables:
|
||||
# TF_WORKSPACE: prod
|
||||
# rules:
|
||||
# - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
||||
|
||||
# apply:prod:
|
||||
# <<: *apply_template
|
||||
# variables:
|
||||
# TF_WORKSPACE: prod
|
||||
# rules:
|
||||
# - if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
||||
# environment:
|
||||
# name: production
|
||||
Reference in New Issue
Block a user