Mohammed Naser | b7b97d6 | 2022-03-12 16:30:00 -0500 | [diff] [blame] | 1 | # {{ ansible_managed }} |
| 2 | |
| 3 | export OS_IDENTITY_API_VERSION=3 |
| 4 | |
| 5 | export OS_AUTH_URL="{{ openstack_helm_endpoints['identity']['scheme']['public'] }}://{{ openstack_helm_endpoints['identity']['host_fqdn_override']['public']['host'] }}/v3" |
| 6 | export OS_AUTH_TYPE=password |
| 7 | export OS_REGION_NAME="{{ openstack_helm_endpoints['identity']['auth']['admin']['region_name'] }}" |
| 8 | export OS_USER_DOMAIN_NAME=Default |
| 9 | export OS_USERNAME="{{ openstack_helm_endpoints['identity']['auth']['admin']['username'] }}" |
| 10 | export OS_PASSWORD="{{ openstack_helm_endpoints['identity']['auth']['admin']['password'] }}" |
| 11 | export OS_PROJECT_DOMAIN_NAME=Default |
Mohammed Naser | f3a14a3 | 2022-09-19 15:15:39 -0400 | [diff] [blame] | 12 | export OS_PROJECT_NAME=admin |
Mohammed Naser | 0148f7b | 2023-02-02 00:19:52 +0000 | [diff] [blame] | 13 | |
Mohammed Naser | bdb2d41 | 2024-06-02 20:39:07 -0400 | [diff] [blame] | 14 | {% if cluster_issuer_type is defined and cluster_issuer_type in ('self-signed', 'ca', 'venafi') %} |
vexxhost-bot | d65a291 | 2024-05-24 16:41:56 +0200 | [diff] [blame] | 15 | export OS_CACERT=/usr/local/share/ca-certificates/atmosphere.crt |
| 16 | {% elif cluster_issuer_acme_private_ca is defined and cluster_issuer_acme_private_ca | bool %} |
| 17 | export OS_CACERT=/etc/ssl/certs/ca-certificates.crt |
Mohammed Naser | 0148f7b | 2023-02-02 00:19:52 +0000 | [diff] [blame] | 18 | {% endif %} |