반응형
현재 ansible을 사용하여 PHP를 설치하는 역할을 구축 중이며 사전을 병합하는 데 어려움이 있습니다. 여러 가지 방법을 시도했지만 원하는대로 작동 할 수 없습니다.
# A vars file:
my_default_values:
key = value
my_values:
my_key = my_value
# In a playbook, I create a task to attempt merging the
# two dictionaries (which doesn't work):
- debug: msg="{{ item.key }} = {{ item.value }}"
with_dict: my_default_values + my_values
# I have also tried:
- debug: msg="{{ item.key }} = {{ item.value }}"
with_dict: my_default_values|union(my_values)
# I have /some/ success with using j2's update,
# but you can't use j2 syntax in "with_dict", it appears.
# This works:
- debug: msg="{{ my_default_values.update(my_values) }}"
# But this doesn't:
- debug: msg="{{ item.key }} = {{ item.value }}"
with_dict: my_default_values.update(my_values)
두 개의 사전을 병합하는 방법이 있습니까? "with_dict"와 함께 사용할 수 있습니까?
해결 방법
- debug: msg="{{ item.key }} = {{ item.value }}"
with_dict: "{{ my_default_values | combine(my_values) }}"
참조 페이지 https://stackoverflow.com/questions/25422771
반응형
'파이썬' 카테고리의 다른 글
파이썬 Python Quicksort 런타임 오류 : 최대 재귀 깊이 (cmp)가 초과되었습니다. (0) | 2020.12.11 |
---|---|
파이썬 x, y = zip (* zip (a, b))이 파이썬에서 작동하는 이유는 무엇입니까? (0) | 2020.12.11 |
파이썬 IP 주소가 주어진 대략적인 위치와 시간대를 알려주는 파이썬 라이브러리는 무엇입니까? (0) | 2020.12.10 |
파이썬 Pandas 막대 그림의 값으로 막대에 주석 달기 (0) | 2020.12.10 |
파이썬 Python에서 문자열을 목록으로 변환 (0) | 2020.12.10 |
댓글