본문 바로가기
파이썬

파이썬 ansible에서 사전 병합

by º기록 2020. 12. 10.
반응형

현재 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

 

 

반응형

댓글