web-dev-qa-db-ja.com

プレイブックでのAnsibleバックスラッシュのエスケープ

Ansibleプレイブックでバックスラッシュを適切にエスケープするにはどうすればよいですか?

パスワードのバックスラッシュを検索して置換しようとしていますが、regex_replace jinja2フィルターにバックスラッシュを文字列として追加することもできません。私はansibleバージョン2.1.1.0を使用しています。

これは問題の例です:

$ cat jinja2-escape-test.yml
---
- hosts: localhost
  gather_facts: no

  vars:
    password: '\Udl5DoQfa3Uy_:1sbcE'

  tasks:

  - debug: var=password

  - name: Escape root password - working
    set_fact: "password_escaped={{ password | regex_replace ('U','\\X') }}"

  - name: Escape root password - not working
    set_fact: "password_escaped={{ password | regex_replace ('U','\\') }}"

  - debug: msg=password_escaped={{ password_escaped }}

# vim:et:sw=2:ts=2:sts=2:

$ ansible-playbook jinja2-escape-test.yml
ERROR! failed at splitting arguments, either an unbalanced jinja2 block or quotes: password_escaped={{ password | regex_replace ('U','\') }}

The error appears to have been in '/home/mot/build-dashboards/jinja2-escape-test.yml': line 15, column 5, but may
be elsewhere in the file depending on the exact syntax problem.

The offending line appears to be:


  - name: Escape root password - not working
    ^ here
3

ここでは構文スタイルが混在しており、引用符が間違って設定されています。

  - name: Escape root password - working
    set_fact: "password_escaped={{ password | regex_replace ('U','\\X') }}"

次のいずれかでなければなりません:

  - name: Escape root password - working
    set_fact:
      password_escaped: "{{ password | regex_replace ('U','\\X') }}"

または:

  - name: Escape root password - working
    set_fact: password_escaped="{{ password | regex_replace ('U','\\X') }}"

quoting がregex_replaceよりもニーズに合っているかどうかを確認することをお勧めします。次のように使用します。

  - name: Escape root password - working
    set_fact:
      password_escaped: "{{ password | quote }}"
5
Henrik Pingel