{"id":16709473,"url":"https://github.com/mrlesmithjr/ansible-openstack-identity-service","last_synced_at":"2025-06-13T03:37:36.828Z","repository":{"id":142637193,"uuid":"96162557","full_name":"mrlesmithjr/ansible-openstack-identity-service","owner":"mrlesmithjr","description":null,"archived":false,"fork":false,"pushed_at":"2017-07-07T19:47:01.000Z","size":44,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-15T01:45:12.732Z","etag":null,"topics":["ansible","ansible-role","openstack","openstack-identity-services","openstack-keystone"],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mrlesmithjr.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-07-04T01:16:42.000Z","updated_at":"2017-07-06T05:49:01.000Z","dependencies_parsed_at":null,"dependency_job_id":"a5e4f0dd-c3ec-4da2-9072-97f532017a8c","html_url":"https://github.com/mrlesmithjr/ansible-openstack-identity-service","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mrlesmithjr/ansible-openstack-identity-service","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrlesmithjr%2Fansible-openstack-identity-service","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrlesmithjr%2Fansible-openstack-identity-service/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrlesmithjr%2Fansible-openstack-identity-service/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrlesmithjr%2Fansible-openstack-identity-service/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mrlesmithjr","download_url":"https://codeload.github.com/mrlesmithjr/ansible-openstack-identity-service/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mrlesmithjr%2Fansible-openstack-identity-service/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259574590,"owners_count":22878748,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["ansible","ansible-role","openstack","openstack-identity-services","openstack-keystone"],"created_at":"2024-10-12T20:04:54.071Z","updated_at":"2025-06-13T03:37:36.722Z","avatar_url":"https://github.com/mrlesmithjr.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- START doctoc generated TOC please keep comment here to allow auto update --\u003e\n\n\u003c!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE --\u003e\n\n**Table of Contents**  _generated with [DocToc](https://github.com/thlorenz/doctoc)_\n\n-   [ansible-openstack-identity-service](#ansible-openstack-identity-service)\n    -   [Requirements](#requirements)\n    -   [Role Variables](#role-variables)\n    -   [Dependencies](#dependencies)\n        -   [Ansible Roles](#ansible-roles)\n    -   [Example Playbook](#example-playbook)\n    -   [License](#license)\n    -   [Author Information](#author-information)\n\n\u003c!-- END doctoc generated TOC please keep comment here to allow auto update --\u003e\n\n# ansible-openstack-identity-service\n\nAn [Ansible](https://www.ansible.com) role to install/configure [OpenStack Identity Services](https://docs.openstack.org/ocata/install-guide-ubuntu/common/get-started-identity.html)\n\n## Requirements\n\nNone\n\n## Role Variables\n\n```yaml\n---\n# defaults file for ansible-openstack-identity-service\n\n# Defines the default OpenStack admin user info\n# Generate password with:\n# openssl rand -hex 10\nopenstack_identity_service_admin_info:\n  pass: '{{ openstack_identity_service_admin_pass }}'\n  user: 'admin'\n  admin_url: '{{ openstack_identity_service_keystone_endpoint_url }}:35357/v3/'\n  internal_url: '{{ openstack_identity_service_keystone_endpoint_url }}:5000/v3/'\n  public_url: '{{ openstack_identity_service_keystone_endpoint_url }}:5000/v3/'\n  region_id: 'RegionOne'\n\n# Define admin pass\nopenstack_identity_service_admin_pass: []\n\n# HA info\n## Define as true if using HA\nopenstack_identity_service_ha: false\n## Define host which should be identified as HA master\nopenstack_identity_service_ha_master: 'controller01'\n\n# Defines Keystone DB info\nopenstack_identity_service_keystone_db_info:\n  db: 'keystone'\n  pass: 'keystone'\n  host: 'localhost'\n  user: 'keystone'\n\n# Defines the default Keystone endpoint url\n# Do not append the port or api version\nopenstack_identity_service_keystone_endpoint_url: 'http://{{ inventory_hostname }}'\n\n# Management IP Info\nopenstack_identity_service_management_interface: 'enp0s8'\nopenstack_identity_service_management_ip: \"{{ hostvars[inventory_hostname]['ansible_'+openstack_compute_service_compute_management_interface]['ipv4']['address'] }}\"\n\n# RabbitMQ Connection Info\nopenstack_identity_service_rabbit_hosts:\n  - 127.0.0.1\nopenstack_identity_service_rabbit_pass: 'openstack'\nopenstack_identity_service_rabbit_user: 'openstack'\n```\n\n## Dependencies\n\n### Ansible Roles\n\nThe following [Ansible](https://www.ansible.com) roles are required as part of\nthis role.\n\n-   [ansible-chrony](https://github.com/mrlesmithjr/ansible-chrony)\n-   [ansible-config-interfaces](https://github.com/mrlesmithjr/ansible-config-interfaces)\n-   [ansible-etc-hosts](https://github.com/mrlesmithjr/ansible-etc-hosts)\n-   [ansible-memcached](https://github.com/mrlesmithjr/ansible-memcached)\n-   [ansible-mysql](https://github.com/mrlesmithjr/ansible-mysql)\n-   [ansible-openstack-base](https://github.com/mrlesmithjr/ansible-openstack-base)\n-   [ansible-openstack-openrc](https://github.com/mrlesmithjr/ansible-openstack-openrc)\n-   [ansible-rabbitmq](https://github.com/mrlesmithjr/ansible-rabbitmq)\n\nThe above roles can be installed using `ansible-galaxy` along with [requirements.yml](./requirements.yml):\n\n```bash\nansible-galaxy install -r requirements.yml\n```\n\n## Example Playbook\n\n[Example Playbook](./playbook.yml)\n\n## To-Do\n\n-   [ ] Implement Fernet keys\n-   [ ] Finish example playbook\n-   [ ] Provide usable variables for example playbook\n    -   [ ] vars file?\n    -   [ ] group_vars?\n\n## License\n\nMIT\n\n## Author Information\n\nLarry Smith Jr.\n\n-   [@mrlesmithjr](https://www.twitter.com/mrlesmithjr)\n-   [EverythingShouldBeVirtual](http://www.everythingshouldbevirtual.com)\n-   mrlesmithjr [at] gmail.com\n    ail.com\n    .com\n        ail.com\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrlesmithjr%2Fansible-openstack-identity-service","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmrlesmithjr%2Fansible-openstack-identity-service","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmrlesmithjr%2Fansible-openstack-identity-service/lists"}