Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore(user management): Added domain capture reference #19376

Merged
merged 4 commits into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@

This tutorial will walk you through adding and managing accounts and users.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

walks you through the steps to add and manage....


<Callout variant="tip">
We recommend that you provision your users with [domain capture](/docs/accounts/accounts-billing/account-setup/domain-capture/), which allows you to automatically add users based on their email domain to your organization. This prevents users from accidentally signing up for New Relic and creating an unnecessary and unwanted New Relic organization. This feature is available for Pro and Enterprise accounts.

Check notice on line 12 in src/content/docs/accounts/accounts-billing/new-relic-one-user-management/account-user-mgmt-tutorial.mdx

View workflow job for this annotation

GitHub Actions / vale

[vale] src/content/docs/accounts/accounts-billing/new-relic-one-user-management/account-user-mgmt-tutorial.mdx#L12

[Microsoft.SentenceLength] Try to keep sentences short (< 30 words).
Raw output
{"message": "[Microsoft.SentenceLength] Try to keep sentences short (\u003c 30 words).", "location": {"path": "src/content/docs/accounts/accounts-billing/new-relic-one-user-management/account-user-mgmt-tutorial.mdx", "range": {"start": {"line": 12, "column": 1}}}, "severity": "INFO"}

Check notice on line 12 in src/content/docs/accounts/accounts-billing/new-relic-one-user-management/account-user-mgmt-tutorial.mdx

View workflow job for this annotation

GitHub Actions / vale

[vale] src/content/docs/accounts/accounts-billing/new-relic-one-user-management/account-user-mgmt-tutorial.mdx#L12

[new-relic.Adverbs] Consider removing 'accidentally'.
Raw output
{"message": "[new-relic.Adverbs] Consider removing 'accidentally'.", "location": {"path": "src/content/docs/accounts/accounts-billing/new-relic-one-user-management/account-user-mgmt-tutorial.mdx", "range": {"start": {"line": 12, "column": 249}}}, "severity": "INFO"}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

...domain capture. This lets you automatically add users to your organization based on their email domain.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Made the suggested changes and moved the callout to the "Before you start" section as James had suggested

</Callout>

## Before you start [#requirements]

Before you start this tutorial, some things to understand:
Expand All @@ -30,6 +34,7 @@
5. [How to manage group access](#group-access)
6. [How to add users](#add-users)


<Steps>
<Step>
## Organization creation and setup [#create-organization]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@
freshnessValidatedDate: 2024-11-08
---


To manage their users, New Relic organizations can configure one or more authentication domains, which control how users are added to a New Relic account, how they're authenticated, and more.

## Authentication domains explained [#auth-domain-definition]



An <DNT>**authentication domain**</DNT> is a grouping of New Relic users governed by the same user management settings, like [how they're provisioned](#source-users) (added and updated) and [how they're authenticated](#authentication) (logged in).

When you create a New Relic organization, the default authentication settings are:
Expand Down Expand Up @@ -85,7 +86,8 @@
## Source of users: how your users are added and managed [#source-users]

<Callout variant="tip">
For an introduction to our SAML SSO and SCIM offerings, please read [Get started with SSO and SCIM](/docs/accounts/accounts-billing/new-relic-one-user-management/introduction-saml-scim).
* For an introduction to our SAML SSO and SCIM offerings, please read [Get started with SSO and SCIM](/docs/accounts/accounts-billing/new-relic-one-user-management/introduction-saml-scim).
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

replace "please read" with "refer"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

done

* We recommend that you provision your users with [domain capture](/docs/accounts/accounts-billing/account-setup/domain-capture/), which allows you to automatically add users based on their email domain to your organization. This prevents users from accidentally signing up for New Relic and creating an unnecessary and unwanted New Relic organization. This feature is available for Pro and Enterprise accounts.

Check notice on line 90 in src/content/docs/accounts/accounts-billing/new-relic-one-user-management/authentication-domains-saml-sso-scim-more.mdx

View workflow job for this annotation

GitHub Actions / vale

[vale] src/content/docs/accounts/accounts-billing/new-relic-one-user-management/authentication-domains-saml-sso-scim-more.mdx#L90

[Microsoft.SentenceLength] Try to keep sentences short (< 30 words).
Raw output
{"message": "[Microsoft.SentenceLength] Try to keep sentences short (\u003c 30 words).", "location": {"path": "src/content/docs/accounts/accounts-billing/new-relic-one-user-management/authentication-domains-saml-sso-scim-more.mdx", "range": {"start": {"line": 90, "column": 5}}}, "severity": "INFO"}

Check notice on line 90 in src/content/docs/accounts/accounts-billing/new-relic-one-user-management/authentication-domains-saml-sso-scim-more.mdx

View workflow job for this annotation

GitHub Actions / vale

[vale] src/content/docs/accounts/accounts-billing/new-relic-one-user-management/authentication-domains-saml-sso-scim-more.mdx#L90

[new-relic.Adverbs] Consider removing 'accidentally'.
Raw output
{"message": "[new-relic.Adverbs] Consider removing 'accidentally'.", "location": {"path": "src/content/docs/accounts/accounts-billing/new-relic-one-user-management/authentication-domains-saml-sso-scim-more.mdx", "range": {"start": {"line": 90, "column": 253}}}, "severity": "INFO"}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

see my earlier comment

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

fixed

</Callout>

From the [authentication domain UI](#ui), you can set one of two options for the source of your users:
Expand Down
Loading