gather_facts: no
vars:
conf_dir: "/tmp/conf"
config:
test-dir: "/tmp/test/data"
wal-dir: "/tmp/test/wal"
tasks:
- name: Create dirs
file:
path: "{{ item }}"
state: directory
owner: "operator"
group: "operator"
mode: '0700'
loop:
- "{{ conf_dir }}"
- "{{ config.test-dir }}"
- "{{ config.wal-dir }}"
При выполнении ругается на вложенные переменные в config хотя они заданы:
fatal: [127.0.0.1]: FAILED! =>
msg: '''dict object'' has no attribute ''test'''
Что делаю не так?
не читаешь ошибку полностью
Обсуждают сегодня