프로그래밍/ansbie_YAML
when-dict 예제
오늘도알찬하루
2018. 12. 4. 22:34
반응형
ㅁ when_dict
- name: dict example hosts: localhost vars: users: alice: name: Alice phone: 123-456 bob: name: bob name phone: 678-910
tasks: - name: user.key is value debug: msg: " {{ item.key }} is {{item.value.name}} {{item.value.phone}} " with_dict: "{{ users }}"
|
- dictionary : key:value.형태의 자료
users (dictionary) 라면,
alice(key) : name: Alice (value) phone: 123-456(value)
bob(key) : name: bob name(value) phone: 678-910(value)
- 실행결과
TASK [user.key is value] ***************************************************************************************************************************
MSG:
bob is bob name 678-910
MSG:
alice is Alice 123-456
반응형