Skip to content

Commit 3e7f6ed

Browse files
committedJan 1, 2025
testing
1 parent 3e4c796 commit 3e7f6ed

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed
 

‎ansible/playbooks/deploy-docker.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,9 @@
2222
dest: "{{ repo_path }}/.env"
2323
content: |
2424
{% for key, secret_id in env_variables.items() %}
25-
{{ key }}={{ lookup('bitwarden.secrets.lookup', secret_id, access_token=bw_access_token) }}
25+
{{ key }}={{ lookup('bitwarden.secrets.lookup', secret_id, access_token=bw_access_token) }}
2626
{% endfor %}
2727
28-
- name: Verify .env file content
29-
ansible.builtin.shell: cat "{{ repo_path }}/.env"
30-
register: env_file_content
31-
32-
- name: Display .env content
33-
ansible.builtin.debug:
34-
var: env_file_content.stdout_lines
35-
3628
- name: Ensure the repository is up-to-date
3729
ansible.builtin.shell: git pull
3830
args:

0 commit comments

Comments
 (0)