10 lines
185 B
YAML
10 lines
185 B
YAML
---
|
|
- hosts: db
|
|
gather_facts: yes
|
|
vars_files:
|
|
- secrets.yml
|
|
tasks:
|
|
- name: Print the database connection string
|
|
debug:
|
|
msg: "{{ k3s_db_connection_string }}"
|