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

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
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 @@ -6,7 +6,9 @@
freshnessValidatedDate: never
---

This tutorial will walk you through adding and managing accounts and users.
This tutorial walks you through the steps to add and manage accounts and users.



## Before you start [#requirements]

Expand All @@ -19,9 +21,13 @@
* [User management concepts](/docs/accounts/accounts-billing/new-relic-one-user-management/user-management-concepts#understand-concepts)
* This presents one recommended workflow but no particular order of steps is required.

<Callout variant="tip">
We recommend that you consider implementing [domain capture](/docs/accounts/accounts-billing/account-setup/domain-capture/) that lets you automatically add users to your organization based on their email domain. 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 25 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#L25

[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": 25, "column": 238}}}, "severity": "INFO"}
</Callout>

## Overview [#overview]

This tutorial will walk you through:
This tutorial walks you through:

1. [Organization creation](#create-organization)
2. [How to add accounts](#add-accounts)
Expand All @@ -30,6 +36,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, refer [Get started with SSO and SCIM](/docs/accounts/accounts-billing/new-relic-one-user-management/introduction-saml-scim).
* We recommend that you consider implementing [domain capture](/docs/accounts/accounts-billing/account-setup/domain-capture/) that lets you automatically add users to your organization based on their email domain. 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

[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": 242}}}, "severity": "INFO"}
</Callout>

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