Skip to content

Commit

Permalink
Revert "Bug/issue#383 (#411)"
Browse files Browse the repository at this point in the history
This reverts commit d1a0016.
  • Loading branch information
alaa-bish committed Nov 7, 2023
1 parent 4782dda commit 86be5cf
Showing 1 changed file with 4 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -274,22 +274,12 @@
- set_fact:
db_uuid: "{{result.db_uuid}}"

- name: Ensure properties is defined
set_fact:
properties: "{}"
when: properties is undefined

- name: Combine properties
block:
- set_fact:
temp_dict: "{ '{{' }} item['name']: item['value'] {{ '}}' }}"
- set_fact:
properties: "{{ properties | combine(temp_dict) }}"
loop: "{{ result.response.properties }}"
- name: create properties map
set_fact:
properties: "{{ properties | default({}) | combine ({ item['name'] : item['value'] }) }}"
loop: "{{result.response.properties}}"
no_log: true



- name: Creation Status
assert:
that:
Expand Down

0 comments on commit 86be5cf

Please sign in to comment.