Skip to content

Commit 4111273

Browse files
authored
update docs removing azuread from api_url requirements (#1548)
1 parent 5d13161 commit 4111273

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/resources/sso_settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Optional:
5858
- `allowed_domains` (String) List of comma- or space-separated domains. The user should belong to at least one domain to log in.
5959
- `allowed_groups` (String) List of comma- or space-separated groups. The user should be a member of at least one group to log in. For Generic OAuth, if you configure allowed_groups, you must also configure groups_attribute_path.
6060
- `allowed_organizations` (String) List of comma- or space-separated organizations. The user should be a member of at least one organization to log in.
61-
- `api_url` (String) The user information endpoint of your OAuth2 provider. Required for azuread, okta and generic_oauth providers.
61+
- `api_url` (String) The user information endpoint of your OAuth2 provider. Required for okta and generic_oauth providers.
6262
- `auth_style` (String) It determines how client_id and client_secret are sent to Oauth2 provider. Possible values are AutoDetect, InParams, InHeader. Default is AutoDetect.
6363
- `auth_url` (String) The authorization endpoint of your OAuth2 provider. Required for azuread, okta and generic_oauth providers.
6464
- `auto_login` (Boolean) Log in automatically, skipping the login screen.

internal/resources/grafana/resource_sso_settings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ var oauth2SettingsSchema = &schema.Resource{
136136
"api_url": {
137137
Type: schema.TypeString,
138138
Optional: true,
139-
Description: "The user information endpoint of your OAuth2 provider. Required for azuread, okta and generic_oauth providers.",
139+
Description: "The user information endpoint of your OAuth2 provider. Required for okta and generic_oauth providers.",
140140
},
141141
"role_attribute_path": {
142142
Type: schema.TypeString,

0 commit comments

Comments
 (0)