Fix the test syntax (#56557)
This commit is contained in:
parent
2a187f362a
commit
6c1dbbe554
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@
|
||||||
scope: "/subscriptions/{{ subscription_id }}/resourceGroups/{{ resource_group }}"
|
scope: "/subscriptions/{{ subscription_id }}/resourceGroups/{{ resource_group }}"
|
||||||
role_name: "{{ role_name }}"
|
role_name: "{{ role_name }}"
|
||||||
register: facts
|
register: facts
|
||||||
until: "{{ facts.roledefinitions | length > 0 }}"
|
until: facts.roledefinitions | length > 0
|
||||||
retries: 50
|
retries: 50
|
||||||
delay: 60
|
delay: 60
|
||||||
|
|
||||||
|
@ -204,4 +204,4 @@
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that:
|
that:
|
||||||
- output.changed
|
- output.changed
|
||||||
|
|
Loading…
Reference in a new issue