Skip to content

Commit

Permalink
fix: misnamed vars
Browse files Browse the repository at this point in the history
  • Loading branch information
strophy authored Sep 5, 2023
2 parents 67a635d + af30b0f commit 6790bd5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ansible/roles/dashmate/tasks/ssl/zerossl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
dashmate_zerossl_ssm_certificate_id: "{{ lookup('aws_ssm', '{{ dashmate_zerossl_ssm_path }}-id', on_missing='skip') }}"

- name: Set ZeroSSL certificate ID to dashmate config from SSM
ansible.builtin.command: "{{ dashmate_cmd }} config set {{ dashmate_zerossl_config_path }}.id {{ dashmate_zerossl_certificate_id }}"
ansible.builtin.command: "{{ dashmate_cmd }} config set {{ dashmate_zerossl_config_path }}.id {{ dashmate_zerossl_ssm_certificate_id }}"
become: true
become_user: dashmate
args:
Expand Down
2 changes: 1 addition & 1 deletion ansible/roles/kill_platform/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ansible.builtin.import_role:
name: dashmate
tasks_from: destroy_platform
when: inventory_hostname in groups["hp_masternodes"] or inventory_hostname in groups["seeds"]
when: inventory_hostname in groups["hp_masternodes"] or inventory_hostname in groups["seed_nodes"]

- name: Remove any remaining docker data
community.docker.docker_prune:
Expand Down

0 comments on commit 6790bd5

Please sign in to comment.