Skip to content

Commit

Permalink
test tfvars and env
Browse files Browse the repository at this point in the history
  • Loading branch information
KevJimenez committed Feb 2, 2024
1 parent 7b05e3a commit 1cf2471
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
1 change: 0 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ jobs:

- name: Run Ansible Playbook
run: ansible-playbook -i aws_ec2.yml playbook.yml

env:
DOCKER_USER: ${{ secrets.DOCKER_USER }}
DOCKER_KEY: ${{ secrets.DOCKER_KEY }}
Expand Down
8 changes: 4 additions & 4 deletions terraform.tfvars
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Secret Keys

cf_api = {{ lookup('env', 'CF_API') }}
cf_email = {{ lookup('env', 'CF_EMAIL') }}
zonecf_id = {{ lookup('env', 'ZONECF_ID') }}
pub_key = {{ lookup('env', 'PUB_KEY') }}
cf_api = "{{ lookup('env', 'CF_API') }}"
cf_email = "{{ lookup('env', 'CF_EMAIL') }}"
zonecf_id = "{{ lookup('env', 'ZONECF_ID') }}"
pub_key = "{{ lookup('env', 'PUB_KEY') }}"

0 comments on commit 1cf2471

Please sign in to comment.