Skip to content

Commit

Permalink
feat(ci): add new TLS options to molecule
Browse files Browse the repository at this point in the history
  • Loading branch information
adf-patrickha committed Nov 5, 2024
1 parent d330782 commit d46030d
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions molecule/default/converge.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
- name: Converge
hosts: all
become: yes
gather_facts: yes
become: true
gather_facts: true

roles:
- role: ansible-role-bareos_console
Expand All @@ -11,5 +11,13 @@
address: localhost
password: "MySuperSecretPassword"
description: "Bareos Console credentials for local Director"
tls_enable: yes
tls_verify_peer: no
tls_enable: true
tls_verify_peer: false
dir_port: 1337
tls_ca_cert: "/home/data/testCA.pem"
tls_cert: "/home/data/test.pem"
tls_key: "/home/data/test.key"
tls_allowed_cns:
- "bareos.example.com"
- "bareos-webui.example.com"
- "bareos-console.example.com"

0 comments on commit d46030d

Please sign in to comment.