Skip to content

Commit fec9325

Browse files
committed
default to ssl on the external db
1 parent 04d2cc1 commit fec9325

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
- name: Configure remote-database
7474
if: matrix.database == 'external'
7575
run: |
76-
./forge remote-database --database-ssl true
76+
./forge remote-database
7777
- name: Configure repositories
7878
run: |
7979
./forge setup-repositories

development/playbooks/remote-database/remote-database.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
certificates_hostnames:
1010
- "{{ ansible_facts['fqdn'] }}"
1111
certificates_ca_password: "CHANGEME"
12-
database_ssl: false
12+
database_ssl: true
1313
database_ssl_crt: "{{ certificates_ca_directory }}/certs/{{ ansible_facts['fqdn'] }}.crt"
1414
database_ssl_key: "{{ certificates_ca_directory }}/private/{{ ansible_facts['fqdn'] }}.key"
1515
postgresql_ssl_crt: "{{ database_ssl_crt if database_ssl else '' }}"

0 commit comments

Comments
 (0)