-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.yaml
123 lines (123 loc) · 4.19 KB
/
config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
options:
debug:
default: False
type: boolean
description: |
Enable debug logging.
remote-id-attribute:
default: 'HTTP_OIDC_ISS'
type: string
description: |
Attribute used to obtain the entity ID of the OpenID Connect Provider.
oidc-client-id:
default: ''
type: string
description: |
Client identifier used to connect to the OpenID Connect Provider.
oidc-client-secret:
default: ''
type: string
description: |
Password used to authenticate with the OpenID Connect Provider.
oidc-provider-metadata-url:
default: ''
type: string
description: |
URL to discover the OpenID Connect Provider and obtain information
needed to interact with it, including its OAuth 2.0 endpoint
locations. Example: https://example.com/.well-known/openid-configuration
oidc-provider-issuer:
default: ''
type: string
description: |
Open ID Connect Provider issuer identifier (e.g. https://example.com
). Used when oidc-provider-metadata-url is not set or the metadata
obtained from that URL does not set it.
oidc-provider-auth-endpoint:
default: ''
type: string
description: |
Open ID Connect Provider authorization endpoint
(e.g. https://example.com/as/authorization.oauth2). Used when
oidc-provider-metadata-url is not set or the metadata obtained from that
URL does not set it.
oidc-provider-token-endpoint:
default: ''
type: string
description: |
Open ID Connect Provider token endpoint
(e.g. https://example.com/as/token.oauth2). Used when
oidc-provider-metadata-url is not set or the metadata obtained from that
URL does not set it.
oidc-provider-token-endpoint-auth:
default: ''
type: string
description: |
Authentication method for the Open ID Connect Provider token endpoint,
possible options are: client_secret_basic, client_secret_post,
client_secret_jwt, private_key_jwt or none. Used when
oidc-provider-metadata-url is not set or the metadata obtained from that
URL does not set it.
oidc-provider-user-info-endpoint:
default: ''
type: string
description: |
Open ID Connect Provider user info endpoint
(e.g. https://example.com/idp/userinfo.openid). Used when
oidc-provider-metadata-url is not set or the metadata obtained from that
URL does not set it.
auth-type:
default: 'auth-openidc'
type: string
description: |
To add support to Bearer Access Token authentication flow that is used
by applications that do not adopt the browser flow, such the OpenStack
CLI, the auth-type must be set to auth-openidc (the default) otherwise
to openid-connect.
protocol_id:
default: 'openid'
type: string
description: |
Federation protocol name.
oidc-remote-user-claim:
default: ''
type: string
description: |
The claim that is used when setting the REMOTE_USER variable on OpenID
Connect protected paths, for example: email.
oidc-provider-jwks-uri:
default: ''
type: string
description: |
.
enable-oauth:
default: true
type: boolean
description: |
Set to true to enable OAuth2 support.
oidc-oauth-verify-jwks-uri:
default: ''
type: string
description: |
The JWKs URL on which the Authorization Server publishes the keys used
to sign its JWT access tokens.
oidc-oauth-introspection-endpoint:
default: ''
type: string
description: |
OAuth 2.0 Authorization Server token introspection endpoint. When
`enable-oauth` is set to true and this option unset (the default), the
introspection endpoint available in the metadata will be used.
user-facing-name:
type: string
default: 'OpenID Connect via mapped'
description: |
A user-facing name to be used for the identity provider and protocol
combination. Used in the OpenStack dashboard.
tls-ca:
type: string
default: null
description: |
This option controls which certificate (or a chain) will be used to connect
to an openidc server(s) over TLS. Certificate contents should be either used
directly or included via include-file://