2023-12-18 11:34:32 +01:00
|
|
|
---
|
|
|
|
version: '1.0'
|
|
|
|
env_apero:
|
|
|
|
description: Apero service
|
|
|
|
access:
|
|
|
|
description: Add access informations to Apero service
|
|
|
|
help: |
|
|
|
|
To access to Apero service, other services need an account and
|
|
|
|
a password.
|
|
|
|
type: leadership
|
|
|
|
login:
|
|
|
|
description: Login name
|
|
|
|
help: |
|
|
|
|
The account name is typically the name of foreign services.
|
|
|
|
type: unix_user
|
|
|
|
multi: true
|
|
|
|
test:
|
|
|
|
- srep
|
|
|
|
password:
|
|
|
|
description: Password
|
|
|
|
type: secret
|
2023-12-18 11:34:33 +01:00
|
|
|
|
|
|
|
env_srep:
|
|
|
|
description: SREP service
|
|
|
|
apero_user:
|
|
|
|
description: Account to access to Apero service
|
|
|
|
type: choice
|
|
|
|
choices:
|
|
|
|
type: variable
|
|
|
|
variable: socle.env_apero.access.login
|
|
|
|
test:
|
|
|
|
- srep
|
2023-12-18 11:34:33 +01:00
|
|
|
apero_password:
|
|
|
|
type: secret
|
|
|
|
hidden: true
|
|
|
|
default:
|
|
|
|
type: jinja
|
|
|
|
jinja: |
|
|
|
|
{% for value in socle.env_apero.access.login %}
|
|
|
|
{% if value == socle.env_srep.apero_user %}
|
|
|
|
{{ socle.env_apero.access.password[loop.index0] }}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|