generated from hackforla/.github-hackforla-base-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 14
116 lines (102 loc) · 4.71 KB
/
terraform-plan.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
name: PR Terraform Plan
on: [pull_request]
permissions:
contents: read
pull-requests: write
jobs:
changed-files:
name: Get changed terraform directories
runs-on: ubuntu-latest
outputs:
module-directory: ${{ steps.module-directory.outputs.directory }}
project-directory: ${{ steps.project-directory.outputs.directory }}
environment-directory: ${{ steps.environment-directory.outputs.directory }}
has-environment-changes: ${{ steps.check-changes.outputs.has-environment-changes }}
has-project-changes: ${{ steps.check-changes.outputs.has-project-changes }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get changed files
id: changed-files
uses: dorny/paths-filter@v2
with:
filters: |
module-change:
- 'terraform-modules/**'
project-change:
- 'terraform-incubator/*/project/*.tf'
environment-change:
- 'terraform-incubator/*/!(project)/*.tf'
list-files: json
- name: List all changed files
run: |
echo 'module-change: ${{ steps.changed-files.outputs.module-change_files }}'
echo 'project-change: ${{ steps.changed-files.outputs.project-change_files }}'
echo 'environment-change: ${{ steps.changed-files.outputs.environment-change_files }}'
- name: Extract module directory
id: module-directory
if: ${{ steps.changed-files.outputs['module-change'] == 'true' }}
run: |
directory=$(dirname "${{ fromJson(steps.changed-files.outputs.module-change_files)[0] }}")
echo "Extracted Directory: $directory"
echo "::set-output name=directory::$directory"
- name: Extract project directory
id: project-directory
if: ${{ steps.changed-files.outputs['project-change'] == 'true' }}
run: |
directory=$(dirname "${{ fromJson(steps.changed-files.outputs.project-change_files)[0] }}")
echo "Extracted Directory: $directory"
echo "::set-output name=directory::$directory"
- name: Extract environment directory
id: environment-directory
if: ${{ steps.changed-files.outputs['environment-change'] == 'true' }}
run: |
directory=$(dirname "${{ fromJson(steps.changed-files.outputs.environment-change_files)[0] }}")
echo "Extracted Directory: $directory"
echo "::set-output name=directory::$directory"
- name: Check for conflicting changes
id: check-changes
run: |
echo "::set-output name=has-environment-changes::${{ steps.changed-files.outputs.environment-change_files != '[]' }}"
echo "::set-output name=has-project-changes::${{ steps.changed-files.outputs.project-change_files != '[]' }}"
plan:
runs-on: ubuntu-latest
name: Terraform Plan
needs: [changed-files]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
AWS_ACCESS_KEY_ID: ${{ secrets.INCUBATOR_AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.INCUBATOR_AWS_SECRET_ACCESS_KEY }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Fail on multiple plans
if: ${{ needs.changed-files.outputs.has-environment-changes == 'true' && needs.changed-files.outputs.has-project-changes == 'true' }}
run: |
echo "Multiple plans detected: Please make changes to environments and projects in separate pull requests."
exit 1
- name: Terraform validate - Modules
if: ${{ needs.changed-files.outputs.module-directory != '' && needs.changed-files.outputs.environment-directory == '' && needs.changed-files.outputs.project-directory == '' }}
run: |
echo "Validating module changes..."
mkdir -p ./temp-validate
cat > ./temp-validate/main.tf <<EOF
module "test" {
source = "../${{ needs.changed-files.outputs.module-directory }}"
}
EOF
cd ./temp-validate
terraform init
terraform validate
- name: Terraform plan - Environment
if: ${{ needs.changed-files.outputs.environment-directory != '' && (needs.changed-files.outputs.project-directory == '' || needs.changed-files.outputs.has-environment-changes == 'true') }}
uses: dflook/terraform-plan@v1
with:
path: ${{ needs.changed-files.outputs.environment-directory }}
- name: Terraform plan - Project
if: ${{ needs.changed-files.outputs.project-directory != '' && needs.changed-files.outputs.has-environment-changes != 'true' }}
uses: dflook/terraform-plan@v1
with:
path: ${{ needs.changed-files.outputs.project-directory }}