Skip to content

Commit

Permalink
AWS deploy: disable https until we have the certs ready
Browse files Browse the repository at this point in the history
  • Loading branch information
panchoh committed Feb 27, 2019
1 parent 23cacf9 commit 34f4986
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions deploy/aws/provision/tasks/common/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
dest: /var/qed/{{ item }}
src: config_files/{{ item }}
with_items:
- server.crt
- server.key
# - server.crt
# - server.key
- id_ed25519

- name: Copy CA cert to remote
Expand Down
6 changes: 3 additions & 3 deletions deploy/aws/provision/templates/qed-config.yml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ agent:
{% endfor %}
server_urls:
{% for host in groups['name_qed-1'] %}
- "https://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
- "http://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
{% endfor %}
{% for host in groups['role_storage'] %}
alert_urls:
Expand All @@ -64,7 +64,7 @@ agent:
{% endfor %}
server_urls:
{% for host in groups['name_qed-1'] %}
- "https://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
- "http://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
{% endfor %}
{% for host in groups['role_storage'] %}
alert_urls:
Expand All @@ -84,7 +84,7 @@ agent:
{% endfor %}
server_urls:
{% for host in groups['name_qed-1'] %}
- "https://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
- "http://{{ hostvars[host]['ansible_eth0']['ipv4']['address'] }}:8800"
{% endfor %}
{% for host in groups['role_storage'] %}
alert_urls:
Expand Down

0 comments on commit 34f4986

Please sign in to comment.