Skip to content

Commit

Permalink
added tfvars to ignore and edited playbook
Browse files Browse the repository at this point in the history
  • Loading branch information
KevJimenez committed Feb 2, 2024
1 parent 09783c9 commit ad210cf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@ terraform.tfstate.backup
.vscode/settings.json
inventory.yml
outputs.tf
variables.yml
variables.yml
terraform.tfvars
4 changes: 2 additions & 2 deletions playbook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
- name: Log in to DockerHub

Check failure on line 37 in playbook.yml

View workflow job for this annotation

GitHub Actions / Ansible Lint

syntax-check[unknown-module]

couldn't resolve module/action 'community.docker.docker_login'. This often indicates a misspelling, missing collection, or incorrect module path.
become_user: ubuntu
community.docker.docker_login:
username: {{ lookup('env', 'DOCKER_USER') }}
password: {{ lookup('env', 'DOCKER_KEY') }}
username: "{{ lookup('env', 'DOCKER_USER') }}"
password: "{{ lookup('env', 'DOCKER_KEY') }}"

- name: Install Docker Watchtower
community.docker.docker_container:
Expand Down

0 comments on commit ad210cf

Please sign in to comment.