forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
87 lines (71 loc) · 2.38 KB
/
pac.yml
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Policy as Code
on:
pull_request:
paths:
- repo-policy/**
env:
TERRAFORM_DIR: "./repo-policy"
jobs:
terraform:
runs-on: ubuntu-latest
permissions:
id-token: write
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- uses: aws-actions/configure-aws-credentials@v1
with:
role-to-assume: arn:aws:iam::754489498669:role/gromit-ci
role-session-name: gromitci
aws-region: eu-central-1
- uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.3.0
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
- name: Terraform Init
working-directory: ${{ env.TERRAFORM_DIR }}
id: init
run: terraform init -input=false
- name: Terraform Validate
id: validate
run: terraform validate -no-color
- name: Terraform Plan
working-directory: ${{ env.TERRAFORM_DIR }}
id: plan
run: |
echo "::group::Terraform Plan"
terraform plan -no-color -input=false
echo "::endgroup::"
continue-on-error: true
env:
GITHUB_TOKEN: ${{ secrets.ITS_GH_TOKEN }}
- name: Update Pull Request
uses: actions/github-script@v6
if: github.event_name == 'pull_request'
env:
PLAN: "terraform\n${{ steps.plan.outputs.stdout }}"
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const output = `#### Terraform Format and Style 🖌\`${{ steps.fmt.outcome }}\`
#### Terraform Initialization ⚙️\`${{ steps.init.outcome }}\`
#### Terraform Plan 📖\`${{ steps.plan.outcome }}\`
#### Terraform Validation 🤖\`${{ steps.validate.outcome }}\`
<details><summary>Show Plan</summary>
\`\`\`\n
${process.env.PLAN}
\`\`\`
</details>
*Pushed by: @${{ github.actor }}, Action: \`${{ github.event_name }}\`*`;
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: output
})
- name: Terraform Plan Status
if: steps.plan.outcome == 'failure'
run: exit 1