cloud.conf.j2 404 B

1234567891011121314151617
  1. [Global]
  2. auth-url = {{ ocp_os_auth_url }}
  3. username = {{ ocp_os_username }}
  4. password = {{ ocp_os_password }}
  5. {% if ocp_os_tenant_id %}
  6. tenant-id = {{ ocp_os_tenant_id }}
  7. {% else %}
  8. tenant-name = {{ ocp_os_tenant_name }}
  9. {% endif %}
  10. {% if ocp_os_region %}
  11. region = {{ ocp_os_region }}
  12. {% endif %}
  13. {% if ocp_os_lb_subnet_id is defined %}
  14. +
  15. +[LoadBalancer]
  16. +subnet-id = {{ ocp_os_lb_subnet_id }}
  17. +{% endif %}