2016-11-29 09:20:28 +00:00
|
|
|
---
|
|
|
|
- name: check azure_tenant_id value
|
|
|
|
fail:
|
|
|
|
msg: "azure_tenant_id is missing"
|
2019-04-29 06:00:20 +00:00
|
|
|
when: azure_tenant_id is not defined or not azure_tenant_id
|
2016-11-29 09:20:28 +00:00
|
|
|
|
|
|
|
- name: check openstack_username value
|
|
|
|
fail:
|
|
|
|
msg: "azure_subscription_id is missing"
|
2019-04-29 06:00:20 +00:00
|
|
|
when: azure_subscription_id is not defined or not azure_subscription_id
|
2016-11-29 09:20:28 +00:00
|
|
|
|
|
|
|
- name: check azure_aad_client_id value
|
|
|
|
fail:
|
|
|
|
msg: "azure_aad_client_id is missing"
|
2019-04-29 06:00:20 +00:00
|
|
|
when: azure_aad_client_id is not defined or not azure_aad_client_id
|
2016-11-29 09:20:28 +00:00
|
|
|
|
|
|
|
- name: check azure_aad_client_secret value
|
|
|
|
fail:
|
|
|
|
msg: "azure_aad_client_secret is missing"
|
2019-04-29 06:00:20 +00:00
|
|
|
when: azure_aad_client_secret is not defined or not azure_aad_client_secret
|
2016-11-29 09:20:28 +00:00
|
|
|
|
|
|
|
- name: check azure_resource_group value
|
|
|
|
fail:
|
|
|
|
msg: "azure_resource_group is missing"
|
2019-04-29 06:00:20 +00:00
|
|
|
when: azure_resource_group is not defined or not azure_resource_group
|
2016-11-29 09:20:28 +00:00
|
|
|
|
|
|
|
- name: check azure_location value
|
|
|
|
fail:
|
|
|
|
msg: "azure_location is missing"
|
2019-04-29 06:00:20 +00:00
|
|
|
when: azure_location is not defined or not azure_location
|
2016-11-29 09:20:28 +00:00
|
|
|
|
|
|
|
- name: check azure_subnet_name value
|
|
|
|
fail:
|
|
|
|
msg: "azure_subnet_name is missing"
|
2019-04-29 06:00:20 +00:00
|
|
|
when: azure_subnet_name is not defined or not azure_subnet_name
|
2016-11-29 09:20:28 +00:00
|
|
|
|
|
|
|
- name: check azure_security_group_name value
|
|
|
|
fail:
|
|
|
|
msg: "azure_security_group_name is missing"
|
2019-04-29 06:00:20 +00:00
|
|
|
when: azure_security_group_name is not defined or not azure_security_group_name
|
2016-11-29 09:20:28 +00:00
|
|
|
|
|
|
|
- name: check azure_vnet_name value
|
|
|
|
fail:
|
|
|
|
msg: "azure_vnet_name is missing"
|
2019-04-29 06:00:20 +00:00
|
|
|
when: azure_vnet_name is not defined or not azure_vnet_name
|
2016-11-29 09:20:28 +00:00
|
|
|
|
2018-03-01 16:41:19 +00:00
|
|
|
- name: check azure_vnet_resource_group value
|
|
|
|
fail:
|
|
|
|
msg: "azure_vnet_resource_group is missing"
|
2019-04-29 06:00:20 +00:00
|
|
|
when: azure_vnet_resource_group is not defined or not azure_vnet_resource_group
|
2018-03-01 16:41:19 +00:00
|
|
|
|
2016-12-09 13:06:48 +00:00
|
|
|
- name: check azure_route_table_name value
|
|
|
|
fail:
|
|
|
|
msg: "azure_route_table_name is missing"
|
2019-04-29 06:00:20 +00:00
|
|
|
when: azure_route_table_name is not defined or not azure_route_table_name
|
2019-04-24 09:14:01 +00:00
|
|
|
|
|
|
|
- name: check azure_loadbalancer_sku value
|
|
|
|
fail:
|
2019-05-02 21:24:21 +00:00
|
|
|
msg: "azure_loadbalancer_sku has an invalid value '{{ azure_loadbalancer_sku }}'. Supported values are 'basic', 'standard'"
|
2019-04-24 09:14:01 +00:00
|
|
|
when: azure_loadbalancer_sku not in ["basic", "standard"]
|
|
|
|
|
|
|
|
- name: "check azure_exclude_master_from_standard_lb is a bool"
|
|
|
|
assert:
|
|
|
|
that: azure_exclude_master_from_standard_lb |type_debug == 'bool'
|
|
|
|
|
|
|
|
- name: "check azure_disable_outbound_snat is a bool"
|
|
|
|
assert:
|
|
|
|
that: azure_disable_outbound_snat |type_debug == 'bool'
|
|
|
|
|
|
|
|
- name: "check azure_use_instance_metadata is a bool"
|
|
|
|
assert:
|
|
|
|
that: azure_use_instance_metadata |type_debug == 'bool'
|