Skip to content

Commit

Permalink
fix: tf
Browse files Browse the repository at this point in the history
  • Loading branch information
okradze committed Jan 24, 2024
1 parent 66565de commit c058027
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tf_plan_server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,9 +93,12 @@ jobs:

- name: Terraform Init
env:
GITHUB_TOKEN: ${{ secrets.github_personal_access_token }}
# GITHUB_TOKEN: ${{ secrets.github_personal_access_token }}
TF_WORKSPACE: ${{ inputs.gh_environment }}
run: terraform init
run: |
eval `ssh-agent -s`
ssh-add - <<< '${{ secrets.github_ssh_private_key }}'
terraform init
- name: Terraform Validate
id: validate
Expand Down

0 comments on commit c058027

Please sign in to comment.