-
Notifications
You must be signed in to change notification settings - Fork 1
43 lines (42 loc) · 1.62 KB
/
terraform_plan.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: Plan terraform changes for base branch
#on: [pull_request]
#
#jobs:
# plan:
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v1
# - name: Plan production
# if: github.base_ref == 'production'
# env:
# ENV: production
# AWS_ACCESS_KEY_ID: ${{ secrets.aws_key_production }}
# AWS_SECRET_ACCESS_KEY: ${{ secrets.aws_secret_production }}
# AWS_REGION: ${{ secrets.aws_region_production }}
# CLOUDFLARE_API_KEY: ${{ secrets.cloudflare_api_key }}
# CLOUDFLARE_EMAIL: ${{ secrets.cloudflare_email }}
# TF_VAR_sparkpost_api_key: ${{ secrets.sparkpost_api_key }}
# run: ./scripts/infra plan
# - name: Plan staging
# if: github.base_ref == 'staging'
# env:
# ENV: staging
# AWS_ACCESS_KEY_ID: ${{ secrets.aws_key_staging }}
# AWS_SECRET_ACCESS_KEY: ${{ secrets.aws_secret_staging }}
# AWS_REGION: ${{ secrets.aws_region_staging }}
# CLOUDFLARE_API_KEY: ${{ secrets.cloudflare_api_key }}
# CLOUDFLARE_EMAIL: ${{ secrets.cloudflare_email }}
# TF_VAR_sparkpost_api_key: ${{ secrets.sparkpost_api_key }}
# run: ./scripts/infra plan
# - name: Plan dev
# if: github.base_ref == 'dev'
# env:
# ENV: dev
# AWS_ACCESS_KEY_ID: ${{ secrets.aws_key_dev }}
# AWS_SECRET_ACCESS_KEY: ${{ secrets.aws_secret_dev }}
# AWS_REGION: ${{ secrets.aws_region_dev }}
# CLOUDFLARE_API_KEY: ${{ secrets.cloudflare_api_key }}
# CLOUDFLARE_EMAIL: ${{ secrets.cloudflare_email }}
# TF_VAR_sparkpost_api_key: ${{ secrets.sparkpost_api_key }}
# run: ./scripts/infra plan