Skip to content

Commit

Permalink
testing
Browse files Browse the repository at this point in the history
  • Loading branch information
star3am committed Nov 8, 2023
1 parent 18d841a commit f4d3b1c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ jobs:
working-directory: ./terraform/awx-ansible-tower-instance
env:
TF_VAR_ssh_public_key: ${{ vars.TF_VAR_SSH_PUBLIC_KEY }}
TF_VAR_ssh_private_key: ${{ vars.TF_VAR_SSH_PRIVATE_KEY }}
TF_VAR_ssh_private_key: ${{ secrets.TF_VAR_SSH_PRIVATE_KEY }}
ARM_CLIENT_ID: ${{ secrets.ARM_CLIENT_ID }}
ARM_CLIENT_SECRET: ${{ secrets.ARM_CLIENT_SECRET }}
ARM_SUBSCRIPTION_ID: ${{ secrets.ARM_SUBSCRIPTION_ID }}
Expand Down Expand Up @@ -239,8 +239,8 @@ jobs:

- name: Terraform auto tfvars
run: |
echo "ssh_private_key = \"${{ secrets.TF_VAR_SSH_PRIVATE_KEY }}\"" >> terraform.auto.tfvars
echo "ssh_public_key = <<EOF\n${{ vars.TF_VAR_SSH_PUBLIC_KEY }}\nEOF" >> terraform.auto.tfvars
echo "ssh_public_key = \"${{ vars.TF_VAR_SSH_PUBLIC_KEY }}\"" >> terraform.auto.tfvars
echo "ssh_private_key = <<EOF\n${{ secrets.TF_VAR_SSH_PRIVATE_KEY }}\nEOF" >> terraform.auto.tfvars
ls -la
cat terraform.auto.tfvars
Expand Down

0 comments on commit f4d3b1c

Please sign in to comment.