docs,config: fix proxy provider config wonk

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
Patrik Oldsberg
2024-03-01 10:34:52 +01:00
parent b130eb36b4
commit 6f5388b4f6
4 changed files with 5 additions and 13 deletions
+2 -4
View File
@@ -397,10 +397,8 @@ auth:
clientId: ${AUTH_ATLASSIAN_CLIENT_ID}
clientSecret: ${AUTH_ATLASSIAN_CLIENT_SECRET}
scopes: ${AUTH_ATLASSIAN_SCOPES}
myproxy:
development: {}
guest:
development: {}
myproxy: {}
guest: {}
costInsights:
engineerCost: 200000
+1 -5
View File
@@ -58,9 +58,5 @@ Similar to the other authentication providers, you have to enable the provider i
```diff
auth:
providers:
+ guest:
+ userEntityRef: user:default/guest
+ development: {}
+ guest: {}
```
We need to specify that the provider is enabled for the given environment, and as there are no config values for this provider yet, you can just specify an empty object.
+1 -2
View File
@@ -15,8 +15,7 @@ Add the following into your `app-config.yaml` or `app-config.production.yaml` fi
auth:
environment: development
providers:
azure-easyauth:
development: {}
azure-easyauth: {}
```
Add a `providerFactories` entry to the router in
+1 -2
View File
@@ -22,8 +22,7 @@ The provider configuration can be added to your `app-config.yaml` under the root
auth:
environment: development
providers:
oauth2Proxy:
development: {}
oauth2Proxy: {}
```
Right now no configuration options are supported, but the empty object is needed