Jak przypisać pustą wartość do zmiennej w Ansible?


12

Jeśli firewall_allowed_portsw:

- name: port {{ item }} allowed in firewall
  ufw:
    rule: allow
    port: "{{ item }}"
    proto: tcp
  with_items: 
    - 22
    - "{{ firewall_allowed_ports }}"

jest niezdefiniowany, pojawia się ten błąd:

fatal: [host.example.com]: FAILED! => {"failed": true, "msg": "the field 'args' 
has an invalid value, which appears to include a variable that is undefined.

Spróbuj rozwiązać problem

"{{ firewall_allowed_ports | }}"

prowadzi do:

fatal: [host.example.com]: FAILED! => {"failed": true, "msg": "template error
while templating string: expected token 'name', got 'end of print statement'. 
String: {{ firewall_allowed_ports | }}"}

Odpowiedzi:


14

Użyj, default([])aby utworzyć pustą listę, jeśli firewall_allowed_portsjest niezdefiniowana. with_itemsBędzie go pominąć, gdy pusta.

- name: port {{ item }} allowed in firewall
  ufw:
    rule: allow
    port: "{{ item }}"
    proto: tcp
  with_items: 
    - 22
    - "{{ firewall_allowed_ports | default([]) }}"
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.