cs_vpc: fix disabled or wrong vpc offering taken (#42465)

This commit is contained in:
René Moser 2018-07-09 08:31:13 +02:00 committed by GitHub
commit d7c3d5501b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 31 additions and 4 deletions

View file

@ -45,7 +45,22 @@
assert:
that:
- vpc is failed
- 'vpc.msg == "VPC offering not found: does_not_exist"'
- 'vpc.msg == "VPC offering not found or not enabled: does_not_exist"'
- name: test fail name substring match
cs_vpc:
name: "{{ cs_resource_prefix }}_vpc"
# Full name is "Redundant VPC offering"
vpc_offering: "Redundant"
zone: "{{ cs_common_zone_adv }}"
cidr: 10.10.1.0/16
ignore_errors: true
register: vpc
- name: verify test fail name substring match
assert:
that:
- vpc is failed
- 'vpc.msg == "VPC offering not found or not enabled: Redundant"'
- name: test create vpc with custom offering in check mode
cs_vpc: