Skip to content

Commit

Permalink
fix typo on workspace name
Browse files Browse the repository at this point in the history
  • Loading branch information
sugetha24 committed Apr 9, 2024
1 parent 761df46 commit bfbd191
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@
vars:
ws_name_dotted: avd-static-studio-test-dotted-{{ r }}
ansible.builtin.uri:
url: '{{ configlet_url + "?key.workspaceId=" + ws_name + "&key.configlet_id=" + item }}'
url: '{{ configlet_url + "?key.workspaceId=" + ws_name_dotted + "&key.configlet_id=" + item }}'
return_content: true
validate_certs: false
headers:
Expand All @@ -388,11 +388,11 @@
loop: "{{ dotted_result.results | zip(configs) | list }}"

# XXX: fix me!
# - name: Check configlets
# ansible.builtin.assert:
# that:
# - item.key == lookup('file', item.value)
# loop: "{{ dotted_response_configlet | dict2items }}"
- name: Check configlets
ansible.builtin.assert:
that:
- item.key == lookup('file', item.value)
loop: "{{ dotted_response_configlet | dict2items }}"

- name: Reset Dotted hostname
run_once: true
Expand Down

0 comments on commit bfbd191

Please sign in to comment.