summaryrefslogtreecommitdiffstats
path: root/docs/tower_configuration.md
diff options
context:
space:
mode:
authorDjebran Lezzoum <ldjebran@gmail.com>2024-10-02 16:05:28 +0200
committerjessicamack <jmack@redhat.com>2024-10-15 23:43:32 +0200
commitbcd006f1a51ce63bc4fb3e38be132f504572df03 (patch)
tree8cc5c8381382aa00bde1e063321a854f7267b614 /docs/tower_configuration.md
parentRemove RADIUS authentication (#15548) (diff)
downloadawx-bcd006f1a51ce63bc4fb3e38be132f504572df03.tar.xz
awx-bcd006f1a51ce63bc4fb3e38be132f504572df03.zip
Remove social oauth (Azure, Github, Google) (#15549)
Remove social oauth (Azure, Github, Google) Co-authored-by: jessicamack <jmack@redhat.com>
Diffstat (limited to '')
-rw-r--r--docs/tower_configuration.md12
1 files changed, 5 insertions, 7 deletions
diff --git a/docs/tower_configuration.md b/docs/tower_configuration.md
index ec917fd924..a5aea85c91 100644
--- a/docs/tower_configuration.md
+++ b/docs/tower_configuration.md
@@ -7,7 +7,7 @@ The REST endpoint for CRUD operations against AWX configurations can be found at
Here is a typical AWX configuration category GET response:
```
-GET /api/v2/settings/github-team/
+GET /api/v2/settings/oidc/
HTTP 200 OK
Allow: GET, PUT, PATCH, DELETE, HEAD, OPTIONS
Content-Type: application/json
@@ -18,12 +18,10 @@ X-API-Query-Time: 0.004s
X-API-Time: 0.026s
{
- "SOCIAL_AUTH_GITHUB_TEAM_CALLBACK_URL": "https://platformhost/sso/complete/github-team/",
- "SOCIAL_AUTH_GITHUB_TEAM_KEY": "",
- "SOCIAL_AUTH_GITHUB_TEAM_SECRET": "",
- "SOCIAL_AUTH_GITHUB_TEAM_ID": "",
- "SOCIAL_AUTH_GITHUB_TEAM_ORGANIZATION_MAP": null,
- "SOCIAL_AUTH_GITHUB_TEAM_TEAM_MAP": null
+ "SOCIAL_AUTH_OIDC_KEY": null,
+ "SOCIAL_AUTH_OIDC_SECRET": "",
+ "SOCIAL_AUTH_OIDC_OIDC_ENDPOINT": "",
+ "SOCIAL_AUTH_OIDC_VERIFY_SSL": true
}
```