ansible/test/integration/targets/cs_ip_address/tasks/main.yml
Sam Doran 43a44e6f35
Move utility functions out of basic.py (#51715)
Move the following methods to lib/anisble/module_utils/common/validation.py:

- _count_terms()
- _check_mutually_exclusive()
- _check_required_one_of()
- _check_required_together()
- _check_required_by()
- _check_required_arguments()
- _check_required_if
- fail_on_missing_params() --> create check_missing_parameters()
2019-03-14 21:29:55 -04:00

19 lines
523 B
YAML

---
- name: test fail vpc and network mutually exclusive
cs_ip_address:
network: "{{ cs_resource_prefix }}_net_vpc"
vpc: "foobar"
zone: "{{ cs_common_zone_adv }}"
ignore_errors: yes
register: ip_address
- name: verify test fail vpc and network mutually exclusive
assert:
that:
- ip_address is failed
- 'ip_address.msg == "parameters are mutually exclusive: vpc|network"'
- name: run test for network setup
import_tasks: network.yml
- name: run test for vpc setup
import_tasks: vpc.yml