Skip to content

Commit

Permalink
Moved Remove Schemas
Browse files Browse the repository at this point in the history
  • Loading branch information
shrsr committed Jul 17, 2020
1 parent 5123717 commit f1e41a6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions tests/integration/targets/mso_backup/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,15 @@
use_proxy: '{{ mso_use_proxy | default(true) }}'
output_level: '{{ mso_output_level | default("info") }}'

- name: Remove schemas
mso_schema:
<<: *mso_info
schema: '{{ item }}'
state: absent
loop:
- '{{ mso_schema | default("ansible_test") }}_2'
- '{{ mso_schema | default("ansible_test") }}'

- name: Ensure azure site exists
mso_site:
<<: *mso_info
Expand All @@ -44,15 +53,6 @@
- https://{{ aws_apic_hostname }}
state: present

- name: Remove schemas
mso_schema:
<<: *mso_info
schema: '{{ item }}'
state: absent
loop:
- '{{ mso_schema | default("ansible_test") }}_2'
- '{{ mso_schema | default("ansible_test") }}'

- name: Ensure tenant ansible_test exist
mso_tenant:
<<: *mso_info
Expand Down

0 comments on commit f1e41a6

Please sign in to comment.