ユーザーを作成するためのプレイブックがあります。3 つの変数すべてがハードコーディングされている場合、プレイブックは正常に動作しますが、変数を渡すとエラーが発生します。追加の変数を使用して AWX コンソールからこの Playbook を実行したところ、「未定義の変数エラー」が発生しました。
プレイブック
#User creation playbook
---
- hosts: "all"
gather_facts: yes
become: yes
become_method: sudo
#vars:
# users:
# - username: "{{ user }}"
# groups: "{{ groups }}"
# password: "{{ password }}"
#replace newpassword with whatever password you want to set for the user
# - username: "user2"
# groups: "groupC"
# password: "{{ 'newpassword' | password_hash('sha512') }}"
tasks:
- name: "Create user accounts"
user:
name: "{{ username }}"
groups: "{{ groups }}"
password: "{{ password }}"
update_password: on_create
#with_items: "{{ users }}"
#- name: "Add authorized keys"
# authorized_key:
# user: "{{ item.username }}"
# key: "{{ lookup('file', 'ssh_keys/'+ item.username + '.key.pub') }}"
# with_items: "{{ users }}"
追加変数
---
vars:
- username: testuserxx
groups: nginx,mysql
password: $6$UxUZNNsVnWUSM9ge$0viDFuXUwtLYyx/U4tFmX8w3TknD3C19Oab.clfi67WGGqJUDrkGpMOvHE1zwudXyKl0gmqAw8piR8KFGi55R/
を使用してパスワードハッシュを作成しましたmkpasswd --method=sha-512
以下は私が得ているエラーです
fatal: [172.16.12.70]: FAILED! => {
"msg": "The task includes an option with an undefined variable. The error was: 'password' is undefined\n\nThe error appears to be in '/tmp/awx_56_skpglhjz/project/user_creation_AWXold.yml': line 17, column 5, but may\nbe elsewhere in the file depending on the exact syntax problem.\n\nThe offending line appears to be:\n\n tasks:\n - name: \"Create user accounts\"\n ^ here\n"
}