├── .gitignore ├── .gitreview ├── CONTRIBUTING.rst ├── LICENSE ├── README.rst ├── bindep.txt ├── defaults └── main.yml ├── doc ├── Makefile ├── requirements.txt └── source │ ├── _static │ └── .gitkeep │ ├── conf.py │ ├── configure-federation-idp.rst │ ├── configure-federation-mapping.rst │ ├── configure-federation-sp.rst │ ├── configure-federation-wrapper.rst │ ├── configure-federation.rst │ ├── configure-keystone.rst │ └── index.rst ├── examples └── playbook.yml ├── handlers └── main.yml ├── meta ├── main.yml └── openstack-ansible.yml ├── releasenotes ├── notes │ ├── .placeholder │ ├── add-security-headers-e46c205b42b9598b.yaml │ ├── app-credentials-709e7ae0573b4955.yaml │ ├── cache_backend-3ac67f78fa111445.yaml │ ├── capping_keystone_workers-e284a47fc4dcea38.yaml │ ├── db-pooling-f078d5d7668377b2.yaml │ ├── db-pooling-old-vars-6ad7284cd8583218.yaml │ ├── deprecated-memcached-and-backend-caching-vars-88c48117b232b37e.yaml │ ├── extra-headers-e54a672d3a78dd89.yaml │ ├── federated_domain_names-4e169b8b9a947940.yaml │ ├── git-sourced-config-change-5b445d3ce26d29c1.yaml │ ├── journal-log-ccbb504642b49611.yaml │ ├── keystone-endpoints-urls-679748dec6ee6dd7.yaml │ ├── keystone-init-config-overrides-1857d5e5bc5a905f.yaml │ ├── keystone-nginx-default-e9d91affd646f379.yaml │ ├── keystone-oidc-forwarded-proto-92471121e3949428.yaml │ ├── keystone-service-setup-host-cd3ee3346af823e6.yaml │ ├── keystone-upstream-config-files-d16f27fc1332ed83.yaml │ ├── keystone-use-pki-role-d0e905887a5f5bd1.yaml │ ├── keystone_drop_nginx-5e7791d22f0be48a.yaml │ ├── keystone_external_ssl-removal-5d972299f98dcc32.yaml │ ├── keystone_init_time_settings-62a1aab4bcfc9779.yaml │ ├── keystone_ssl-4dc7676a36831f85.yaml │ ├── keystone_uwsgi-86116742b67bb944.yaml │ ├── keystone_uwsgi_role-b61179e170401e21.yaml │ ├── mod-auth-openidc-102bd253b677f3fc.yaml │ ├── oidc-fix-redirect-uri-5909172a1db5457f.yaml │ ├── openstack-distribution-packages-d42a426bb57f76b1.yaml │ ├── os-keystone-admin-token-auth-deprecation-24e84a18f8a56814.yaml │ ├── os-keystone-apache-log-format-support-7232177f835222ee.yaml │ ├── os-keystone-apache-mpm-tunable-support-1c72f2f99cd502bc.yaml │ ├── os-keystone-oidc-scope-spelling-fix-3051b95adeb37901.yaml │ ├── os-keystone-only-install-venv-b766568ee8d40354.yaml │ ├── os-keystone-remove-service-user-f2100fa3127c7c2e.yaml │ ├── os-keystone-uwsgi-and-nginx-options-2157f8e40a7a8156.yaml │ ├── os-keystone-zero-downtime-upgrade-5f19ab84183490b9.yaml │ ├── os_keystone-centos7-support-0a5d97f81ac42e44.yaml │ ├── oslo-messaging-separate-backends-e68c98d4f9d9a79c.yaml │ ├── package-list-name-changes-007cacee4faf8ee6.yaml │ ├── package-state-711a1eb4814311cc.yaml │ ├── primary-container-rebuild-a2f4d7f33d66c843.yaml │ ├── remove-requirements-git-bdf5691b8390ed7c.yaml │ ├── remove_rpc_backend-187132a35223d295.yaml │ ├── shibboleth_mirror_el-89e41075a1ee8fbf.yaml │ ├── sso-callback-template-cf720ab7f6fc2461.yaml │ ├── tls12-only-75222cbe8c32ad57.yaml │ └── tls_variables-5d7db8f80f158f0d.yaml └── source │ ├── _static │ └── .placeholder │ ├── _templates │ └── .placeholder │ ├── conf.py │ ├── index.rst │ ├── mitaka.rst │ ├── newton.rst │ ├── ocata.rst │ ├── pike.rst │ ├── queens.rst │ ├── rocky.rst │ ├── stein.rst │ ├── train.rst │ ├── unreleased.rst │ ├── ussuri.rst │ └── zed.rst ├── tasks ├── keystone_apache.yml ├── keystone_credential.yml ├── keystone_credential_autorotate.yml ├── keystone_credential_create.yml ├── keystone_credential_distribute.yml ├── keystone_db_sync.yml ├── keystone_federation_sp_idp_setup.yml ├── keystone_federation_sp_shib_setup.yml ├── keystone_fernet.yml ├── keystone_fernet_keys_autorotate.yml ├── keystone_fernet_keys_create.yml ├── keystone_fernet_keys_distribute.yml ├── keystone_idp_setup.yml ├── keystone_install.yml ├── keystone_key_setup.yml ├── keystone_ldap_setup.yml ├── keystone_post_install.yml ├── keystone_service_bootstrap.yml ├── main.yml ├── main_keystone_federation_sp_idp_setup.yml └── main_pre.yml ├── templates ├── keystone-credential-rotate.sh.j2 ├── keystone-fernet-rotate.sh.j2 ├── keystone.conf.j2 ├── keystone.domain.conf.j2 ├── shibboleth-attribute-map.xml.j2 └── shibboleth2.xml.j2 ├── tests ├── ansible-role-requirements.yml ├── group_vars │ └── all_containers.yml ├── host_vars │ ├── infra1.yml │ ├── keystone1.yml │ ├── keystone2.yml │ └── localhost.yml ├── inventory ├── os_keystone-overrides.yml ├── test-keystone-functional.yml └── test.yml ├── tox.ini ├── vars ├── debian.yml ├── distro_install.yml ├── main.yml ├── redhat.yml └── source_install.yml └── zuul.d └── project.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/.gitreview -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/README.rst -------------------------------------------------------------------------------- /bindep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/bindep.txt -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/doc/requirements.txt -------------------------------------------------------------------------------- /doc/source/_static/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/configure-federation-idp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/doc/source/configure-federation-idp.rst -------------------------------------------------------------------------------- /doc/source/configure-federation-mapping.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/doc/source/configure-federation-mapping.rst -------------------------------------------------------------------------------- /doc/source/configure-federation-sp.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/doc/source/configure-federation-sp.rst -------------------------------------------------------------------------------- /doc/source/configure-federation-wrapper.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/doc/source/configure-federation-wrapper.rst -------------------------------------------------------------------------------- /doc/source/configure-federation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/doc/source/configure-federation.rst -------------------------------------------------------------------------------- /doc/source/configure-keystone.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/doc/source/configure-keystone.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /examples/playbook.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/examples/playbook.yml -------------------------------------------------------------------------------- /handlers/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/handlers/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/meta/main.yml -------------------------------------------------------------------------------- /meta/openstack-ansible.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/meta/openstack-ansible.yml -------------------------------------------------------------------------------- /releasenotes/notes/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/notes/add-security-headers-e46c205b42b9598b.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/add-security-headers-e46c205b42b9598b.yaml -------------------------------------------------------------------------------- /releasenotes/notes/app-credentials-709e7ae0573b4955.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/app-credentials-709e7ae0573b4955.yaml -------------------------------------------------------------------------------- /releasenotes/notes/cache_backend-3ac67f78fa111445.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/cache_backend-3ac67f78fa111445.yaml -------------------------------------------------------------------------------- /releasenotes/notes/capping_keystone_workers-e284a47fc4dcea38.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/capping_keystone_workers-e284a47fc4dcea38.yaml -------------------------------------------------------------------------------- /releasenotes/notes/db-pooling-f078d5d7668377b2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/db-pooling-f078d5d7668377b2.yaml -------------------------------------------------------------------------------- /releasenotes/notes/db-pooling-old-vars-6ad7284cd8583218.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/db-pooling-old-vars-6ad7284cd8583218.yaml -------------------------------------------------------------------------------- /releasenotes/notes/deprecated-memcached-and-backend-caching-vars-88c48117b232b37e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/deprecated-memcached-and-backend-caching-vars-88c48117b232b37e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/extra-headers-e54a672d3a78dd89.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/extra-headers-e54a672d3a78dd89.yaml -------------------------------------------------------------------------------- /releasenotes/notes/federated_domain_names-4e169b8b9a947940.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/federated_domain_names-4e169b8b9a947940.yaml -------------------------------------------------------------------------------- /releasenotes/notes/git-sourced-config-change-5b445d3ce26d29c1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/git-sourced-config-change-5b445d3ce26d29c1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/journal-log-ccbb504642b49611.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/journal-log-ccbb504642b49611.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-endpoints-urls-679748dec6ee6dd7.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone-endpoints-urls-679748dec6ee6dd7.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-init-config-overrides-1857d5e5bc5a905f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone-init-config-overrides-1857d5e5bc5a905f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-nginx-default-e9d91affd646f379.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone-nginx-default-e9d91affd646f379.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-oidc-forwarded-proto-92471121e3949428.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone-oidc-forwarded-proto-92471121e3949428.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-service-setup-host-cd3ee3346af823e6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone-service-setup-host-cd3ee3346af823e6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-upstream-config-files-d16f27fc1332ed83.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone-upstream-config-files-d16f27fc1332ed83.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone-use-pki-role-d0e905887a5f5bd1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone-use-pki-role-d0e905887a5f5bd1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone_drop_nginx-5e7791d22f0be48a.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone_drop_nginx-5e7791d22f0be48a.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone_external_ssl-removal-5d972299f98dcc32.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone_external_ssl-removal-5d972299f98dcc32.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone_init_time_settings-62a1aab4bcfc9779.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone_init_time_settings-62a1aab4bcfc9779.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone_ssl-4dc7676a36831f85.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone_ssl-4dc7676a36831f85.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone_uwsgi-86116742b67bb944.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone_uwsgi-86116742b67bb944.yaml -------------------------------------------------------------------------------- /releasenotes/notes/keystone_uwsgi_role-b61179e170401e21.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/keystone_uwsgi_role-b61179e170401e21.yaml -------------------------------------------------------------------------------- /releasenotes/notes/mod-auth-openidc-102bd253b677f3fc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/mod-auth-openidc-102bd253b677f3fc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/oidc-fix-redirect-uri-5909172a1db5457f.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/oidc-fix-redirect-uri-5909172a1db5457f.yaml -------------------------------------------------------------------------------- /releasenotes/notes/openstack-distribution-packages-d42a426bb57f76b1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/openstack-distribution-packages-d42a426bb57f76b1.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os-keystone-admin-token-auth-deprecation-24e84a18f8a56814.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/os-keystone-admin-token-auth-deprecation-24e84a18f8a56814.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os-keystone-apache-log-format-support-7232177f835222ee.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/os-keystone-apache-log-format-support-7232177f835222ee.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os-keystone-apache-mpm-tunable-support-1c72f2f99cd502bc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/os-keystone-apache-mpm-tunable-support-1c72f2f99cd502bc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os-keystone-oidc-scope-spelling-fix-3051b95adeb37901.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/os-keystone-oidc-scope-spelling-fix-3051b95adeb37901.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os-keystone-only-install-venv-b766568ee8d40354.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/os-keystone-only-install-venv-b766568ee8d40354.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os-keystone-remove-service-user-f2100fa3127c7c2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/os-keystone-remove-service-user-f2100fa3127c7c2e.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os-keystone-uwsgi-and-nginx-options-2157f8e40a7a8156.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/os-keystone-uwsgi-and-nginx-options-2157f8e40a7a8156.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os-keystone-zero-downtime-upgrade-5f19ab84183490b9.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/os-keystone-zero-downtime-upgrade-5f19ab84183490b9.yaml -------------------------------------------------------------------------------- /releasenotes/notes/os_keystone-centos7-support-0a5d97f81ac42e44.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/os_keystone-centos7-support-0a5d97f81ac42e44.yaml -------------------------------------------------------------------------------- /releasenotes/notes/oslo-messaging-separate-backends-e68c98d4f9d9a79c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/oslo-messaging-separate-backends-e68c98d4f9d9a79c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/package-list-name-changes-007cacee4faf8ee6.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/package-list-name-changes-007cacee4faf8ee6.yaml -------------------------------------------------------------------------------- /releasenotes/notes/package-state-711a1eb4814311cc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/package-state-711a1eb4814311cc.yaml -------------------------------------------------------------------------------- /releasenotes/notes/primary-container-rebuild-a2f4d7f33d66c843.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/primary-container-rebuild-a2f4d7f33d66c843.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove-requirements-git-bdf5691b8390ed7c.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/remove-requirements-git-bdf5691b8390ed7c.yaml -------------------------------------------------------------------------------- /releasenotes/notes/remove_rpc_backend-187132a35223d295.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/remove_rpc_backend-187132a35223d295.yaml -------------------------------------------------------------------------------- /releasenotes/notes/shibboleth_mirror_el-89e41075a1ee8fbf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/shibboleth_mirror_el-89e41075a1ee8fbf.yaml -------------------------------------------------------------------------------- /releasenotes/notes/sso-callback-template-cf720ab7f6fc2461.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/sso-callback-template-cf720ab7f6fc2461.yaml -------------------------------------------------------------------------------- /releasenotes/notes/tls12-only-75222cbe8c32ad57.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/tls12-only-75222cbe8c32ad57.yaml -------------------------------------------------------------------------------- /releasenotes/notes/tls_variables-5d7db8f80f158f0d.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/notes/tls_variables-5d7db8f80f158f0d.yaml -------------------------------------------------------------------------------- /releasenotes/source/_static/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/_templates/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /releasenotes/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/conf.py -------------------------------------------------------------------------------- /releasenotes/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/index.rst -------------------------------------------------------------------------------- /releasenotes/source/mitaka.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/mitaka.rst -------------------------------------------------------------------------------- /releasenotes/source/newton.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/newton.rst -------------------------------------------------------------------------------- /releasenotes/source/ocata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/ocata.rst -------------------------------------------------------------------------------- /releasenotes/source/pike.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/pike.rst -------------------------------------------------------------------------------- /releasenotes/source/queens.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/queens.rst -------------------------------------------------------------------------------- /releasenotes/source/rocky.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/rocky.rst -------------------------------------------------------------------------------- /releasenotes/source/stein.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/stein.rst -------------------------------------------------------------------------------- /releasenotes/source/train.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/train.rst -------------------------------------------------------------------------------- /releasenotes/source/unreleased.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/unreleased.rst -------------------------------------------------------------------------------- /releasenotes/source/ussuri.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/ussuri.rst -------------------------------------------------------------------------------- /releasenotes/source/zed.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/releasenotes/source/zed.rst -------------------------------------------------------------------------------- /tasks/keystone_apache.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_apache.yml -------------------------------------------------------------------------------- /tasks/keystone_credential.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_credential.yml -------------------------------------------------------------------------------- /tasks/keystone_credential_autorotate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_credential_autorotate.yml -------------------------------------------------------------------------------- /tasks/keystone_credential_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_credential_create.yml -------------------------------------------------------------------------------- /tasks/keystone_credential_distribute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_credential_distribute.yml -------------------------------------------------------------------------------- /tasks/keystone_db_sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_db_sync.yml -------------------------------------------------------------------------------- /tasks/keystone_federation_sp_idp_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_federation_sp_idp_setup.yml -------------------------------------------------------------------------------- /tasks/keystone_federation_sp_shib_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_federation_sp_shib_setup.yml -------------------------------------------------------------------------------- /tasks/keystone_fernet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_fernet.yml -------------------------------------------------------------------------------- /tasks/keystone_fernet_keys_autorotate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_fernet_keys_autorotate.yml -------------------------------------------------------------------------------- /tasks/keystone_fernet_keys_create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_fernet_keys_create.yml -------------------------------------------------------------------------------- /tasks/keystone_fernet_keys_distribute.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_fernet_keys_distribute.yml -------------------------------------------------------------------------------- /tasks/keystone_idp_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_idp_setup.yml -------------------------------------------------------------------------------- /tasks/keystone_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_install.yml -------------------------------------------------------------------------------- /tasks/keystone_key_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_key_setup.yml -------------------------------------------------------------------------------- /tasks/keystone_ldap_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_ldap_setup.yml -------------------------------------------------------------------------------- /tasks/keystone_post_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_post_install.yml -------------------------------------------------------------------------------- /tasks/keystone_service_bootstrap.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/keystone_service_bootstrap.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/main.yml -------------------------------------------------------------------------------- /tasks/main_keystone_federation_sp_idp_setup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/main_keystone_federation_sp_idp_setup.yml -------------------------------------------------------------------------------- /tasks/main_pre.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tasks/main_pre.yml -------------------------------------------------------------------------------- /templates/keystone-credential-rotate.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/templates/keystone-credential-rotate.sh.j2 -------------------------------------------------------------------------------- /templates/keystone-fernet-rotate.sh.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/templates/keystone-fernet-rotate.sh.j2 -------------------------------------------------------------------------------- /templates/keystone.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/templates/keystone.conf.j2 -------------------------------------------------------------------------------- /templates/keystone.domain.conf.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/templates/keystone.domain.conf.j2 -------------------------------------------------------------------------------- /templates/shibboleth-attribute-map.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/templates/shibboleth-attribute-map.xml.j2 -------------------------------------------------------------------------------- /templates/shibboleth2.xml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/templates/shibboleth2.xml.j2 -------------------------------------------------------------------------------- /tests/ansible-role-requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tests/ansible-role-requirements.yml -------------------------------------------------------------------------------- /tests/group_vars/all_containers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tests/group_vars/all_containers.yml -------------------------------------------------------------------------------- /tests/host_vars/infra1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tests/host_vars/infra1.yml -------------------------------------------------------------------------------- /tests/host_vars/keystone1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tests/host_vars/keystone1.yml -------------------------------------------------------------------------------- /tests/host_vars/keystone2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tests/host_vars/keystone2.yml -------------------------------------------------------------------------------- /tests/host_vars/localhost.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tests/host_vars/localhost.yml -------------------------------------------------------------------------------- /tests/inventory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tests/inventory -------------------------------------------------------------------------------- /tests/os_keystone-overrides.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tests/os_keystone-overrides.yml -------------------------------------------------------------------------------- /tests/test-keystone-functional.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tests/test-keystone-functional.yml -------------------------------------------------------------------------------- /tests/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tests/test.yml -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/tox.ini -------------------------------------------------------------------------------- /vars/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/vars/debian.yml -------------------------------------------------------------------------------- /vars/distro_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/vars/distro_install.yml -------------------------------------------------------------------------------- /vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/vars/main.yml -------------------------------------------------------------------------------- /vars/redhat.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/vars/redhat.yml -------------------------------------------------------------------------------- /vars/source_install.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/vars/source_install.yml -------------------------------------------------------------------------------- /zuul.d/project.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/openstack-ansible-os_keystone/HEAD/zuul.d/project.yaml --------------------------------------------------------------------------------