mongodbatlas.getAtlasUsers
Explore with Pulumi AI
# Data Source: atlas_users
atlas_users
provides Atlas Users associated with a specified Organization, Project, or Team.
NOTE: Groups and projects are synonymous terms. You may find
groupId
in the official documentation.
Example Usage
Using org_id attribute to query Organization Atlas Users
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const test = mongodbatlas.getAtlasUsers({
orgId: "<ORG_ID>",
});
import pulumi
import pulumi_mongodbatlas as mongodbatlas
test = mongodbatlas.get_atlas_users(org_id="<ORG_ID>")
package main
import (
"github.com/pulumi/pulumi-mongodbatlas/sdk/v3/go/mongodbatlas"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := mongodbatlas.LookupAtlasUsers(ctx, &mongodbatlas.LookupAtlasUsersArgs{
OrgId: pulumi.StringRef("<ORG_ID>"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Mongodbatlas = Pulumi.Mongodbatlas;
return await Deployment.RunAsync(() =>
{
var test = Mongodbatlas.GetAtlasUsers.Invoke(new()
{
OrgId = "<ORG_ID>",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.mongodbatlas.MongodbatlasFunctions;
import com.pulumi.mongodbatlas.inputs.GetAtlasUsersArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var test = MongodbatlasFunctions.getAtlasUsers(GetAtlasUsersArgs.builder()
.orgId("<ORG_ID>")
.build());
}
}
variables:
test:
fn::invoke:
Function: mongodbatlas:getAtlasUsers
Arguments:
orgId: <ORG_ID>
Using project_id attribute to query Project Atlas Users
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const test = mongodbatlas.getAtlasUsers({
projectId: "<PROJECT_ID>",
});
import pulumi
import pulumi_mongodbatlas as mongodbatlas
test = mongodbatlas.get_atlas_users(project_id="<PROJECT_ID>")
package main
import (
"github.com/pulumi/pulumi-mongodbatlas/sdk/v3/go/mongodbatlas"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := mongodbatlas.LookupAtlasUsers(ctx, &mongodbatlas.LookupAtlasUsersArgs{
ProjectId: pulumi.StringRef("<PROJECT_ID>"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Mongodbatlas = Pulumi.Mongodbatlas;
return await Deployment.RunAsync(() =>
{
var test = Mongodbatlas.GetAtlasUsers.Invoke(new()
{
ProjectId = "<PROJECT_ID>",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.mongodbatlas.MongodbatlasFunctions;
import com.pulumi.mongodbatlas.inputs.GetAtlasUsersArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var test = MongodbatlasFunctions.getAtlasUsers(GetAtlasUsersArgs.builder()
.projectId("<PROJECT_ID>")
.build());
}
}
variables:
test:
fn::invoke:
Function: mongodbatlas:getAtlasUsers
Arguments:
projectId: <PROJECT_ID>
Using team_id and org_id attribute to query Team Atlas Users
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const test = mongodbatlas.getAtlasUsers({
teamId: "<TEAM_ID>",
orgId: "<ORG_ID>",
});
import pulumi
import pulumi_mongodbatlas as mongodbatlas
test = mongodbatlas.get_atlas_users(team_id="<TEAM_ID>",
org_id="<ORG_ID>")
package main
import (
"github.com/pulumi/pulumi-mongodbatlas/sdk/v3/go/mongodbatlas"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := mongodbatlas.LookupAtlasUsers(ctx, &mongodbatlas.LookupAtlasUsersArgs{
TeamId: pulumi.StringRef("<TEAM_ID>"),
OrgId: pulumi.StringRef("<ORG_ID>"),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Mongodbatlas = Pulumi.Mongodbatlas;
return await Deployment.RunAsync(() =>
{
var test = Mongodbatlas.GetAtlasUsers.Invoke(new()
{
TeamId = "<TEAM_ID>",
OrgId = "<ORG_ID>",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.mongodbatlas.MongodbatlasFunctions;
import com.pulumi.mongodbatlas.inputs.GetAtlasUsersArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var test = MongodbatlasFunctions.getAtlasUsers(GetAtlasUsersArgs.builder()
.teamId("<TEAM_ID>")
.orgId("<ORG_ID>")
.build());
}
}
variables:
test:
fn::invoke:
Function: mongodbatlas:getAtlasUsers
Arguments:
teamId: <TEAM_ID>
orgId: <ORG_ID>
Using getAtlasUsers
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getAtlasUsers(args: GetAtlasUsersArgs, opts?: InvokeOptions): Promise<GetAtlasUsersResult>
function getAtlasUsersOutput(args: GetAtlasUsersOutputArgs, opts?: InvokeOptions): Output<GetAtlasUsersResult>
def get_atlas_users(items_per_page: Optional[int] = None,
org_id: Optional[str] = None,
page_num: Optional[int] = None,
project_id: Optional[str] = None,
team_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetAtlasUsersResult
def get_atlas_users_output(items_per_page: Optional[pulumi.Input[int]] = None,
org_id: Optional[pulumi.Input[str]] = None,
page_num: Optional[pulumi.Input[int]] = None,
project_id: Optional[pulumi.Input[str]] = None,
team_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetAtlasUsersResult]
func LookupAtlasUsers(ctx *Context, args *LookupAtlasUsersArgs, opts ...InvokeOption) (*LookupAtlasUsersResult, error)
func LookupAtlasUsersOutput(ctx *Context, args *LookupAtlasUsersOutputArgs, opts ...InvokeOption) LookupAtlasUsersResultOutput
> Note: This function is named LookupAtlasUsers
in the Go SDK.
public static class GetAtlasUsers
{
public static Task<GetAtlasUsersResult> InvokeAsync(GetAtlasUsersArgs args, InvokeOptions? opts = null)
public static Output<GetAtlasUsersResult> Invoke(GetAtlasUsersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetAtlasUsersResult> getAtlasUsers(GetAtlasUsersArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: mongodbatlas:index/getAtlasUsers:getAtlasUsers
arguments:
# arguments dictionary
The following arguments are supported:
- Items
Per intPage Number of items that the response returns per page, up to a maximum of
500
. Defaults to100
.IMPORTANT: Either
org_id
,project_id
, orteam_id
withorg_id
must be configurated.- Org
Id string - Unique 24-hexadecimal digit string that identifies the organization whose users you want to return. Also needed when
team_id
attributes is defined. - Page
Num int - Number of the page that displays the current set of the total objects that the response returns. Defaults to
1
. - Project
Id string - Unique 24-hexadecimal digit string that identifies the project whose users you want to return.
- Team
Id string - Unique 24-hexadecimal digit string that identifies the team whose users you want to return.
- Items
Per intPage Number of items that the response returns per page, up to a maximum of
500
. Defaults to100
.IMPORTANT: Either
org_id
,project_id
, orteam_id
withorg_id
must be configurated.- Org
Id string - Unique 24-hexadecimal digit string that identifies the organization whose users you want to return. Also needed when
team_id
attributes is defined. - Page
Num int - Number of the page that displays the current set of the total objects that the response returns. Defaults to
1
. - Project
Id string - Unique 24-hexadecimal digit string that identifies the project whose users you want to return.
- Team
Id string - Unique 24-hexadecimal digit string that identifies the team whose users you want to return.
- items
Per IntegerPage Number of items that the response returns per page, up to a maximum of
500
. Defaults to100
.IMPORTANT: Either
org_id
,project_id
, orteam_id
withorg_id
must be configurated.- org
Id String - Unique 24-hexadecimal digit string that identifies the organization whose users you want to return. Also needed when
team_id
attributes is defined. - page
Num Integer - Number of the page that displays the current set of the total objects that the response returns. Defaults to
1
. - project
Id String - Unique 24-hexadecimal digit string that identifies the project whose users you want to return.
- team
Id String - Unique 24-hexadecimal digit string that identifies the team whose users you want to return.
- items
Per numberPage Number of items that the response returns per page, up to a maximum of
500
. Defaults to100
.IMPORTANT: Either
org_id
,project_id
, orteam_id
withorg_id
must be configurated.- org
Id string - Unique 24-hexadecimal digit string that identifies the organization whose users you want to return. Also needed when
team_id
attributes is defined. - page
Num number - Number of the page that displays the current set of the total objects that the response returns. Defaults to
1
. - project
Id string - Unique 24-hexadecimal digit string that identifies the project whose users you want to return.
- team
Id string - Unique 24-hexadecimal digit string that identifies the team whose users you want to return.
- items_
per_ intpage Number of items that the response returns per page, up to a maximum of
500
. Defaults to100
.IMPORTANT: Either
org_id
,project_id
, orteam_id
withorg_id
must be configurated.- org_
id str - Unique 24-hexadecimal digit string that identifies the organization whose users you want to return. Also needed when
team_id
attributes is defined. - page_
num int - Number of the page that displays the current set of the total objects that the response returns. Defaults to
1
. - project_
id str - Unique 24-hexadecimal digit string that identifies the project whose users you want to return.
- team_
id str - Unique 24-hexadecimal digit string that identifies the team whose users you want to return.
- items
Per NumberPage Number of items that the response returns per page, up to a maximum of
500
. Defaults to100
.IMPORTANT: Either
org_id
,project_id
, orteam_id
withorg_id
must be configurated.- org
Id String - Unique 24-hexadecimal digit string that identifies the organization whose users you want to return. Also needed when
team_id
attributes is defined. - page
Num Number - Number of the page that displays the current set of the total objects that the response returns. Defaults to
1
. - project
Id String - Unique 24-hexadecimal digit string that identifies the project whose users you want to return.
- team
Id String - Unique 24-hexadecimal digit string that identifies the team whose users you want to return.
getAtlasUsers Result
The following output properties are available:
- Id string
- Results
List<Get
Atlas Users Result> - A list where each element contains a Atlas User.
- Total
Count int - Count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated.
- Items
Per intPage - Org
Id string - Page
Num int - Project
Id string - Team
Id string
- Id string
- Results
[]Get
Atlas Users Result - A list where each element contains a Atlas User.
- Total
Count int - Count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated.
- Items
Per intPage - Org
Id string - Page
Num int - Project
Id string - Team
Id string
- id String
- results
List<Get
Atlas Users Result> - A list where each element contains a Atlas User.
- total
Count Integer - Count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated.
- items
Per IntegerPage - org
Id String - page
Num Integer - project
Id String - team
Id String
- id string
- results
Get
Atlas Users Result[] - A list where each element contains a Atlas User.
- total
Count number - Count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated.
- items
Per numberPage - org
Id string - page
Num number - project
Id string - team
Id string
- id str
- results
Sequence[Get
Atlas Users Result] - A list where each element contains a Atlas User.
- total_
count int - Count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated.
- items_
per_ intpage - org_
id str - page_
num int - project_
id str - team_
id str
- id String
- results List<Property Map>
- A list where each element contains a Atlas User.
- total
Count Number - Count of the total number of items in the result set. It may be greater than the number of objects in the results array if the entire result set is paginated.
- items
Per NumberPage - org
Id String - page
Num Number - project
Id String - team
Id String
Supporting Types
GetAtlasUsersResult
- Country string
- Two alphabet characters that identifies MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
- Created
At string - Date and time when the current account is created. This value is in the ISO 8601 timestamp format in UTC.
- Email
Address string - Email address that belongs to the MongoDB Atlas user.
- First
Name string - First or given name that belongs to the MongoDB Atlas user.
- Id string
- Last
Auth string - Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.
- Last
Name string - Last name, family name, or surname that belongs to the MongoDB Atlas user.
- Links
List<Get
Atlas Users Result Link> - Mobile
Number string - Mobile phone number that belongs to the MongoDB Atlas user.
- Roles
List<Get
Atlas Users Result Role> - Team
Ids List<string> - List of unique 24-hexadecimal digit strings that identifies the teams to which this MongoDB Atlas user belongs.
links.#.href
- Uniform Resource Locator (URL) that points another API resource to which this response has some relationship. This URL often begins with https://cloud.mongodb.com/api/atlas.links.#.rel
- Uniform Resource Locator (URL) that defines the semantic relationship between this resource and another API resource. This URL often begins with https://cloud.mongodb.com/api/atlas.roles.#.group_id
- Unique 24-hexadecimal digit string that identifies the project to which this role belongs. You can set a value for this parameter or orgId but not both in the same request.roles.#.org_id
- Unique 24-hexadecimal digit string that identifies the organization to which this role belongs. You can set a value for this parameter or groupId but not both in the same request.roles.#.role_name
- Human-readable label that identifies the collection of privileges that MongoDB Atlas grants a specific API key, user, or team. These roles include organization- and project-level roles. The MongoDB Documentation describes the valid roles that can be assigned.
- User
Id string - Unique 24-hexadecimal digit string that identifies this user.
- Username string
- Email address that belongs to the MongoDB Atlas user account. You cannot modify this address after creating the user.
- Country string
- Two alphabet characters that identifies MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
- Created
At string - Date and time when the current account is created. This value is in the ISO 8601 timestamp format in UTC.
- Email
Address string - Email address that belongs to the MongoDB Atlas user.
- First
Name string - First or given name that belongs to the MongoDB Atlas user.
- Id string
- Last
Auth string - Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.
- Last
Name string - Last name, family name, or surname that belongs to the MongoDB Atlas user.
- Links
[]Get
Atlas Users Result Link - Mobile
Number string - Mobile phone number that belongs to the MongoDB Atlas user.
- Roles
[]Get
Atlas Users Result Role - Team
Ids []string - List of unique 24-hexadecimal digit strings that identifies the teams to which this MongoDB Atlas user belongs.
links.#.href
- Uniform Resource Locator (URL) that points another API resource to which this response has some relationship. This URL often begins with https://cloud.mongodb.com/api/atlas.links.#.rel
- Uniform Resource Locator (URL) that defines the semantic relationship between this resource and another API resource. This URL often begins with https://cloud.mongodb.com/api/atlas.roles.#.group_id
- Unique 24-hexadecimal digit string that identifies the project to which this role belongs. You can set a value for this parameter or orgId but not both in the same request.roles.#.org_id
- Unique 24-hexadecimal digit string that identifies the organization to which this role belongs. You can set a value for this parameter or groupId but not both in the same request.roles.#.role_name
- Human-readable label that identifies the collection of privileges that MongoDB Atlas grants a specific API key, user, or team. These roles include organization- and project-level roles. The MongoDB Documentation describes the valid roles that can be assigned.
- User
Id string - Unique 24-hexadecimal digit string that identifies this user.
- Username string
- Email address that belongs to the MongoDB Atlas user account. You cannot modify this address after creating the user.
- country String
- Two alphabet characters that identifies MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
- created
At String - Date and time when the current account is created. This value is in the ISO 8601 timestamp format in UTC.
- email
Address String - Email address that belongs to the MongoDB Atlas user.
- first
Name String - First or given name that belongs to the MongoDB Atlas user.
- id String
- last
Auth String - Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.
- last
Name String - Last name, family name, or surname that belongs to the MongoDB Atlas user.
- links
List<Get
Atlas Users Result Link> - mobile
Number String - Mobile phone number that belongs to the MongoDB Atlas user.
- roles
List<Get
Atlas Users Result Role> - team
Ids List<String> - List of unique 24-hexadecimal digit strings that identifies the teams to which this MongoDB Atlas user belongs.
links.#.href
- Uniform Resource Locator (URL) that points another API resource to which this response has some relationship. This URL often begins with https://cloud.mongodb.com/api/atlas.links.#.rel
- Uniform Resource Locator (URL) that defines the semantic relationship between this resource and another API resource. This URL often begins with https://cloud.mongodb.com/api/atlas.roles.#.group_id
- Unique 24-hexadecimal digit string that identifies the project to which this role belongs. You can set a value for this parameter or orgId but not both in the same request.roles.#.org_id
- Unique 24-hexadecimal digit string that identifies the organization to which this role belongs. You can set a value for this parameter or groupId but not both in the same request.roles.#.role_name
- Human-readable label that identifies the collection of privileges that MongoDB Atlas grants a specific API key, user, or team. These roles include organization- and project-level roles. The MongoDB Documentation describes the valid roles that can be assigned.
- user
Id String - Unique 24-hexadecimal digit string that identifies this user.
- username String
- Email address that belongs to the MongoDB Atlas user account. You cannot modify this address after creating the user.
- country string
- Two alphabet characters that identifies MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
- created
At string - Date and time when the current account is created. This value is in the ISO 8601 timestamp format in UTC.
- email
Address string - Email address that belongs to the MongoDB Atlas user.
- first
Name string - First or given name that belongs to the MongoDB Atlas user.
- id string
- last
Auth string - Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.
- last
Name string - Last name, family name, or surname that belongs to the MongoDB Atlas user.
- links
Get
Atlas Users Result Link[] - mobile
Number string - Mobile phone number that belongs to the MongoDB Atlas user.
- roles
Get
Atlas Users Result Role[] - team
Ids string[] - List of unique 24-hexadecimal digit strings that identifies the teams to which this MongoDB Atlas user belongs.
links.#.href
- Uniform Resource Locator (URL) that points another API resource to which this response has some relationship. This URL often begins with https://cloud.mongodb.com/api/atlas.links.#.rel
- Uniform Resource Locator (URL) that defines the semantic relationship between this resource and another API resource. This URL often begins with https://cloud.mongodb.com/api/atlas.roles.#.group_id
- Unique 24-hexadecimal digit string that identifies the project to which this role belongs. You can set a value for this parameter or orgId but not both in the same request.roles.#.org_id
- Unique 24-hexadecimal digit string that identifies the organization to which this role belongs. You can set a value for this parameter or groupId but not both in the same request.roles.#.role_name
- Human-readable label that identifies the collection of privileges that MongoDB Atlas grants a specific API key, user, or team. These roles include organization- and project-level roles. The MongoDB Documentation describes the valid roles that can be assigned.
- user
Id string - Unique 24-hexadecimal digit string that identifies this user.
- username string
- Email address that belongs to the MongoDB Atlas user account. You cannot modify this address after creating the user.
- country str
- Two alphabet characters that identifies MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
- created_
at str - Date and time when the current account is created. This value is in the ISO 8601 timestamp format in UTC.
- email_
address str - Email address that belongs to the MongoDB Atlas user.
- first_
name str - First or given name that belongs to the MongoDB Atlas user.
- id str
- last_
auth str - Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.
- last_
name str - Last name, family name, or surname that belongs to the MongoDB Atlas user.
- links
Sequence[Get
Atlas Users Result Link] - mobile_
number str - Mobile phone number that belongs to the MongoDB Atlas user.
- roles
Sequence[Get
Atlas Users Result Role] - team_
ids Sequence[str] - List of unique 24-hexadecimal digit strings that identifies the teams to which this MongoDB Atlas user belongs.
links.#.href
- Uniform Resource Locator (URL) that points another API resource to which this response has some relationship. This URL often begins with https://cloud.mongodb.com/api/atlas.links.#.rel
- Uniform Resource Locator (URL) that defines the semantic relationship between this resource and another API resource. This URL often begins with https://cloud.mongodb.com/api/atlas.roles.#.group_id
- Unique 24-hexadecimal digit string that identifies the project to which this role belongs. You can set a value for this parameter or orgId but not both in the same request.roles.#.org_id
- Unique 24-hexadecimal digit string that identifies the organization to which this role belongs. You can set a value for this parameter or groupId but not both in the same request.roles.#.role_name
- Human-readable label that identifies the collection of privileges that MongoDB Atlas grants a specific API key, user, or team. These roles include organization- and project-level roles. The MongoDB Documentation describes the valid roles that can be assigned.
- user_
id str - Unique 24-hexadecimal digit string that identifies this user.
- username str
- Email address that belongs to the MongoDB Atlas user account. You cannot modify this address after creating the user.
- country String
- Two alphabet characters that identifies MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
- created
At String - Date and time when the current account is created. This value is in the ISO 8601 timestamp format in UTC.
- email
Address String - Email address that belongs to the MongoDB Atlas user.
- first
Name String - First or given name that belongs to the MongoDB Atlas user.
- id String
- last
Auth String - Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.
- last
Name String - Last name, family name, or surname that belongs to the MongoDB Atlas user.
- links List<Property Map>
- mobile
Number String - Mobile phone number that belongs to the MongoDB Atlas user.
- roles List<Property Map>
- team
Ids List<String> - List of unique 24-hexadecimal digit strings that identifies the teams to which this MongoDB Atlas user belongs.
links.#.href
- Uniform Resource Locator (URL) that points another API resource to which this response has some relationship. This URL often begins with https://cloud.mongodb.com/api/atlas.links.#.rel
- Uniform Resource Locator (URL) that defines the semantic relationship between this resource and another API resource. This URL often begins with https://cloud.mongodb.com/api/atlas.roles.#.group_id
- Unique 24-hexadecimal digit string that identifies the project to which this role belongs. You can set a value for this parameter or orgId but not both in the same request.roles.#.org_id
- Unique 24-hexadecimal digit string that identifies the organization to which this role belongs. You can set a value for this parameter or groupId but not both in the same request.roles.#.role_name
- Human-readable label that identifies the collection of privileges that MongoDB Atlas grants a specific API key, user, or team. These roles include organization- and project-level roles. The MongoDB Documentation describes the valid roles that can be assigned.
- user
Id String - Unique 24-hexadecimal digit string that identifies this user.
- username String
- Email address that belongs to the MongoDB Atlas user account. You cannot modify this address after creating the user.
GetAtlasUsersResultLink
GetAtlasUsersResultRole
Package Details
- Repository
- MongoDB Atlas pulumi/pulumi-mongodbatlas
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
mongodbatlas
Terraform Provider.