Skip to content

Commit 433c747

Browse files
committed
fix: keys
1 parent f97af2c commit 433c747

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/github_actions.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -108,10 +108,10 @@ jobs:
108108
- name: Download Encrypted Artifact & Decrypt Artifact
109109
uses: badgerhobbs/terraform-state@v2
110110
with:
111-
encryption_key: ${{ secrets.encryption_key }}
111+
encryption_key: ${{ secrets.ENCRYPTION_KEY }}
112112
operation: download
113113
location: artifact
114-
github_token: ${{ secrets.gh_access_token }}
114+
github_token: ${{ secrets.GITHUB_TOKEN }}
115115
directory: terraform
116116
continue-on-error: true
117117

@@ -141,10 +141,10 @@ jobs:
141141
- name: Download Encrypted Artifact & Decrypt Artifact
142142
uses: badgerhobbs/terraform-state@v2
143143
with:
144-
encryption_key: ${{ secrets.encryption_key }}
144+
encryption_key: ${{ secrets.ENCRYPTION_KEY }}
145145
operation: download
146146
location: artifact
147-
github_token: ${{ secrets.gh_access_token }}
147+
github_token: ${{ secrets.GITHUB_TOKEN }}
148148
directory: terraform
149149
continue-on-error: true
150150

@@ -183,10 +183,10 @@ jobs:
183183
- name: Download Encrypted Artifact & Decrypt Artifact
184184
uses: badgerhobbs/terraform-state@v2
185185
with:
186-
encryption_key: ${{ secrets.encryption_key }}
186+
encryption_key: ${{ secrets.ENCRYPTION_KEY }}
187187
operation: download
188188
location: artifact
189-
github_token: ${{ secrets.gh_access_token }}
189+
github_token: ${{ secrets.GITHUB_TOKEN }}
190190
directory: terraform
191191
continue-on-error: true
192192

@@ -216,8 +216,8 @@ jobs:
216216
- name: Encrypt Artifact & Upload Encrypted Artifact
217217
uses: badgerhobbs/terraform-state@v2
218218
with:
219-
encryption_key: ${{ secrets.encryption_key }}
219+
encryption_key: ${{ secrets.ENCRYPTION_KEY }}
220220
operation: upload
221221
location: artifact
222-
github_token: ${{ secrets.gh_access_token }}
222+
github_token: ${{ secrets.GITHUB_TOKEN }}
223223
directory: terraform

0 commit comments

Comments
 (0)