An open API service indexing awesome lists of open source software.

https://github.com/openstack/charm-interface-keystone-fid-service-provider

Charm Interface - Keystone FID Service Provider. Mirror of code maintained at opendev.org.
https://github.com/openstack/charm-interface-keystone-fid-service-provider

Last synced: 29 days ago
JSON representation

Charm Interface - Keystone FID Service Provider. Mirror of code maintained at opendev.org.

Awesome Lists containing this project

README

          

# Overview

This interface layer handles the communication with Keystone via the
'keystone-federated-backend' interface protocol.

# Usage

## Provides

The interface layer will set the following state:

* `{relation_name}.connected` The relation is established.

For example:

```python
from charms.reactive import when

@when(federated-backend.connected')
@when('configuration.complete')
def configure_federation(federation):
domain.wsgi_config_fragment('wsgi_fragment_path')
domain.trigger_restart()
```