You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.6 KiB

  1. ---
  2. - name: check azure_tenant_id value
  3. fail:
  4. msg: "azure_tenant_id is missing"
  5. when: azure_tenant_id is not defined or azure_tenant_id == ""
  6. - name: check openstack_username value
  7. fail:
  8. msg: "azure_subscription_id is missing"
  9. when: azure_subscription_id is not defined or azure_subscription_id == ""
  10. - name: check azure_aad_client_id value
  11. fail:
  12. msg: "azure_aad_client_id is missing"
  13. when: azure_aad_client_id is not defined or azure_aad_client_id == ""
  14. - name: check azure_aad_client_secret value
  15. fail:
  16. msg: "azure_aad_client_secret is missing"
  17. when: azure_aad_client_secret is not defined or azure_aad_client_secret == ""
  18. - name: check azure_resource_group value
  19. fail:
  20. msg: "azure_resource_group is missing"
  21. when: azure_resource_group is not defined or azure_resource_group == ""
  22. - name: check azure_location value
  23. fail:
  24. msg: "azure_location is missing"
  25. when: azure_location is not defined or azure_location == ""
  26. - name: check azure_subnet_name value
  27. fail:
  28. msg: "azure_subnet_name is missing"
  29. when: azure_subnet_name is not defined or azure_subnet_name == ""
  30. - name: check azure_security_group_name value
  31. fail:
  32. msg: "azure_security_group_name is missing"
  33. when: azure_security_group_name is not defined or azure_security_group_name == ""
  34. - name: check azure_vnet_name value
  35. fail:
  36. msg: "azure_vnet_name is missing"
  37. when: azure_vnet_name is not defined or azure_vnet_name == ""
  38. - name: check azure_route_table_name value
  39. fail:
  40. msg: "azure_route_table_name is missing"
  41. when: azure_route_table_name is not defined or azure_route_table_name == ""