-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (42 loc) · 1.36 KB
/
test_repository_file_encrypted.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
name: Test Terraform State Repository File Encrypted
on:
workflow_dispatch:
push:
jobs:
test_repository_file_encrypted:
runs-on: ubuntu-latest
name: Test Terraform State Repository File Encrypted
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
token: ${{ secrets.gh_access_token }}
- name: Decrypt Repository File
uses: badgerhobbs/terraform-state@main
with:
encryption_key: ${{ secrets.encryption_key }}
operation: download
location: repository
github_token: ${{ secrets.gh_access_token }}
continue-on-error: true
- name: Configure Terraform
uses: hashicorp/setup-terraform@v2
- name: Initialize Terraform
run: terraform init
- name: Run Terraform Plan
run: |
terraform plan -var="run_id=${{ github.run_id }}"
- name: Run Terraform Apply
run: |
terraform apply -auto-approve -var="run_id=${{ github.run_id }}"
- name: List all files and directories
run: |
echo "List all directories and files in the GitHub workspace"
ls -R
- name: Encrypt and Commit Repository File
uses: badgerhobbs/terraform-state@main
with:
encryption_key: ${{ secrets.encryption_key }}
operation: upload
location: repository
github_token: ${{ secrets.gh_access_token }}