Skip to content

Commit 5b6e802

Browse files
committed
default to ssl on the external db
1 parent 79d5d16 commit 5b6e802

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
@@ -85,7 +85,7 @@ jobs:
8585
- name: Configure remote-database
8686
if: matrix.database == 'external'
8787
run: |
88-
./forge remote-database --database-ssl true
88+
./forge remote-database
8989
- name: Configure repositories
9090
run: |
9191
./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)