1. Packages
  2. Mongodbatlas Provider
  3. API Docs
  4. getOrganizations
MongoDB Atlas v4.0.0 published on Tuesday, Dec 30, 2025 by Pulumi
mongodbatlas logo
MongoDB Atlas v4.0.0 published on Tuesday, Dec 30, 2025 by Pulumi

    mongodbatlas.getOrganizations describes all MongoDB Atlas Organizations. This represents organizations that have been created.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as mongodbatlas from "@pulumi/mongodbatlas";
    
    const test = mongodbatlas.getOrganizations({
        pageNum: 1,
        itemsPerPage: 5,
    });
    
    import pulumi
    import pulumi_mongodbatlas as mongodbatlas
    
    test = mongodbatlas.get_organizations(page_num=1,
        items_per_page=5)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-mongodbatlas/sdk/v4/go/mongodbatlas"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := mongodbatlas.LookupOrganizations(ctx, &mongodbatlas.LookupOrganizationsArgs{
    			PageNum:      pulumi.IntRef(1),
    			ItemsPerPage: pulumi.IntRef(5),
    		}, 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.GetOrganizations.Invoke(new()
        {
            PageNum = 1,
            ItemsPerPage = 5,
        });
    
    });
    
    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.GetOrganizationsArgs;
    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.getOrganizations(GetOrganizationsArgs.builder()
                .pageNum(1)
                .itemsPerPage(5)
                .build());
    
        }
    }
    
    variables:
      test:
        fn::invoke:
          function: mongodbatlas:getOrganizations
          arguments:
            pageNum: 1
            itemsPerPage: 5
    

    Using getOrganizations

    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 getOrganizations(args: GetOrganizationsArgs, opts?: InvokeOptions): Promise<GetOrganizationsResult>
    function getOrganizationsOutput(args: GetOrganizationsOutputArgs, opts?: InvokeOptions): Output<GetOrganizationsResult>
    def get_organizations(items_per_page: Optional[int] = None,
                          name: Optional[str] = None,
                          page_num: Optional[int] = None,
                          opts: Optional[InvokeOptions] = None) -> GetOrganizationsResult
    def get_organizations_output(items_per_page: Optional[pulumi.Input[int]] = None,
                          name: Optional[pulumi.Input[str]] = None,
                          page_num: Optional[pulumi.Input[int]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetOrganizationsResult]
    func LookupOrganizations(ctx *Context, args *LookupOrganizationsArgs, opts ...InvokeOption) (*LookupOrganizationsResult, error)
    func LookupOrganizationsOutput(ctx *Context, args *LookupOrganizationsOutputArgs, opts ...InvokeOption) LookupOrganizationsResultOutput

    > Note: This function is named LookupOrganizations in the Go SDK.

    public static class GetOrganizations 
    {
        public static Task<GetOrganizationsResult> InvokeAsync(GetOrganizationsArgs args, InvokeOptions? opts = null)
        public static Output<GetOrganizationsResult> Invoke(GetOrganizationsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetOrganizationsResult> getOrganizations(GetOrganizationsArgs args, InvokeOptions options)
    public static Output<GetOrganizationsResult> getOrganizations(GetOrganizationsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: mongodbatlas:index/getOrganizations:getOrganizations
      arguments:
        # arguments dictionary

    The following arguments are supported:

    ItemsPerPage int
    Number of items to return per page, up to a maximum of 500. Defaults to 100.
    Name string
    PageNum int
    The page to return. Defaults to 1.
    ItemsPerPage int
    Number of items to return per page, up to a maximum of 500. Defaults to 100.
    Name string
    PageNum int
    The page to return. Defaults to 1.
    itemsPerPage Integer
    Number of items to return per page, up to a maximum of 500. Defaults to 100.
    name String
    pageNum Integer
    The page to return. Defaults to 1.
    itemsPerPage number
    Number of items to return per page, up to a maximum of 500. Defaults to 100.
    name string
    pageNum number
    The page to return. Defaults to 1.
    items_per_page int
    Number of items to return per page, up to a maximum of 500. Defaults to 100.
    name str
    page_num int
    The page to return. Defaults to 1.
    itemsPerPage Number
    Number of items to return per page, up to a maximum of 500. Defaults to 100.
    name String
    pageNum Number
    The page to return. Defaults to 1.

    getOrganizations Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Results List<GetOrganizationsResult>
    TotalCount int
    ItemsPerPage int
    Name string
    PageNum int
    Id string
    The provider-assigned unique ID for this managed resource.
    Results []GetOrganizationsResult
    TotalCount int
    ItemsPerPage int
    Name string
    PageNum int
    id String
    The provider-assigned unique ID for this managed resource.
    results List<GetOrganizationsResult>
    totalCount Integer
    itemsPerPage Integer
    name String
    pageNum Integer
    id string
    The provider-assigned unique ID for this managed resource.
    results GetOrganizationsResult[]
    totalCount number
    itemsPerPage number
    name string
    pageNum number
    id str
    The provider-assigned unique ID for this managed resource.
    results Sequence[GetOrganizationsResult]
    total_count int
    items_per_page int
    name str
    page_num int
    id String
    The provider-assigned unique ID for this managed resource.
    results List<Property Map>
    totalCount Number
    itemsPerPage Number
    name String
    pageNum Number

    Supporting Types

    GetOrganizationsResult

    ApiAccessListRequired bool
    Flag that indicates whether to require API operations to originate from an IP Address added to the API access list for the specified organization.
    GenAiFeaturesEnabled bool
    Flag that indicates whether this organization has access to generative AI features. This setting only applies to Atlas Commercial and defaults to true. With this setting on, Project Owners may be able to enable or disable individual AI features at the project level. To learn more, see https://www.mongodb.com/docs/generative-ai-faq/.
    Id string
    Autogenerated Unique ID for this data source.
    IsDeleted bool
    Flag that indicates whether this organization has been deleted.
    Links List<GetOrganizationsResultLink>
    MultiFactorAuthRequired bool
    Flag that indicates whether to require users to set up Multi-Factor Authentication (MFA) before accessing the specified organization. To learn more, see: https://www.mongodb.com/docs/atlas/security-multi-factor-authentication/.
    Name string
    Human-readable label that identifies the organization.
    RestrictEmployeeAccess bool
    Flag that indicates whether to block MongoDB Support from accessing Atlas infrastructure for any deployment in the specified organization without explicit permission. Once this setting is turned on, you can grant MongoDB Support a 24-hour bypass access to the Atlas deployment to resolve support issues. To learn more, see: https://www.mongodb.com/docs/atlas/security-restrict-support-access/.
    SecurityContact string
    String that specifies a single email address for the specified organization to receive security-related notifications. Specifying a security contact does not grant them authorization or access to Atlas for security decisions or approvals.
    SkipDefaultAlertsSettings bool
    Users List<GetOrganizationsResultUser>
    Returns list of all pending and active MongoDB Cloud users associated with the specified organization.
    ApiAccessListRequired bool
    Flag that indicates whether to require API operations to originate from an IP Address added to the API access list for the specified organization.
    GenAiFeaturesEnabled bool
    Flag that indicates whether this organization has access to generative AI features. This setting only applies to Atlas Commercial and defaults to true. With this setting on, Project Owners may be able to enable or disable individual AI features at the project level. To learn more, see https://www.mongodb.com/docs/generative-ai-faq/.
    Id string
    Autogenerated Unique ID for this data source.
    IsDeleted bool
    Flag that indicates whether this organization has been deleted.
    Links []GetOrganizationsResultLink
    MultiFactorAuthRequired bool
    Flag that indicates whether to require users to set up Multi-Factor Authentication (MFA) before accessing the specified organization. To learn more, see: https://www.mongodb.com/docs/atlas/security-multi-factor-authentication/.
    Name string
    Human-readable label that identifies the organization.
    RestrictEmployeeAccess bool
    Flag that indicates whether to block MongoDB Support from accessing Atlas infrastructure for any deployment in the specified organization without explicit permission. Once this setting is turned on, you can grant MongoDB Support a 24-hour bypass access to the Atlas deployment to resolve support issues. To learn more, see: https://www.mongodb.com/docs/atlas/security-restrict-support-access/.
    SecurityContact string
    String that specifies a single email address for the specified organization to receive security-related notifications. Specifying a security contact does not grant them authorization or access to Atlas for security decisions or approvals.
    SkipDefaultAlertsSettings bool
    Users []GetOrganizationsResultUser
    Returns list of all pending and active MongoDB Cloud users associated with the specified organization.
    apiAccessListRequired Boolean
    Flag that indicates whether to require API operations to originate from an IP Address added to the API access list for the specified organization.
    genAiFeaturesEnabled Boolean
    Flag that indicates whether this organization has access to generative AI features. This setting only applies to Atlas Commercial and defaults to true. With this setting on, Project Owners may be able to enable or disable individual AI features at the project level. To learn more, see https://www.mongodb.com/docs/generative-ai-faq/.
    id String
    Autogenerated Unique ID for this data source.
    isDeleted Boolean
    Flag that indicates whether this organization has been deleted.
    links List<GetOrganizationsResultLink>
    multiFactorAuthRequired Boolean
    Flag that indicates whether to require users to set up Multi-Factor Authentication (MFA) before accessing the specified organization. To learn more, see: https://www.mongodb.com/docs/atlas/security-multi-factor-authentication/.
    name String
    Human-readable label that identifies the organization.
    restrictEmployeeAccess Boolean
    Flag that indicates whether to block MongoDB Support from accessing Atlas infrastructure for any deployment in the specified organization without explicit permission. Once this setting is turned on, you can grant MongoDB Support a 24-hour bypass access to the Atlas deployment to resolve support issues. To learn more, see: https://www.mongodb.com/docs/atlas/security-restrict-support-access/.
    securityContact String
    String that specifies a single email address for the specified organization to receive security-related notifications. Specifying a security contact does not grant them authorization or access to Atlas for security decisions or approvals.
    skipDefaultAlertsSettings Boolean
    users List<GetOrganizationsResultUser>
    Returns list of all pending and active MongoDB Cloud users associated with the specified organization.
    apiAccessListRequired boolean
    Flag that indicates whether to require API operations to originate from an IP Address added to the API access list for the specified organization.
    genAiFeaturesEnabled boolean
    Flag that indicates whether this organization has access to generative AI features. This setting only applies to Atlas Commercial and defaults to true. With this setting on, Project Owners may be able to enable or disable individual AI features at the project level. To learn more, see https://www.mongodb.com/docs/generative-ai-faq/.
    id string
    Autogenerated Unique ID for this data source.
    isDeleted boolean
    Flag that indicates whether this organization has been deleted.
    links GetOrganizationsResultLink[]
    multiFactorAuthRequired boolean
    Flag that indicates whether to require users to set up Multi-Factor Authentication (MFA) before accessing the specified organization. To learn more, see: https://www.mongodb.com/docs/atlas/security-multi-factor-authentication/.
    name string
    Human-readable label that identifies the organization.
    restrictEmployeeAccess boolean
    Flag that indicates whether to block MongoDB Support from accessing Atlas infrastructure for any deployment in the specified organization without explicit permission. Once this setting is turned on, you can grant MongoDB Support a 24-hour bypass access to the Atlas deployment to resolve support issues. To learn more, see: https://www.mongodb.com/docs/atlas/security-restrict-support-access/.
    securityContact string
    String that specifies a single email address for the specified organization to receive security-related notifications. Specifying a security contact does not grant them authorization or access to Atlas for security decisions or approvals.
    skipDefaultAlertsSettings boolean
    users GetOrganizationsResultUser[]
    Returns list of all pending and active MongoDB Cloud users associated with the specified organization.
    api_access_list_required bool
    Flag that indicates whether to require API operations to originate from an IP Address added to the API access list for the specified organization.
    gen_ai_features_enabled bool
    Flag that indicates whether this organization has access to generative AI features. This setting only applies to Atlas Commercial and defaults to true. With this setting on, Project Owners may be able to enable or disable individual AI features at the project level. To learn more, see https://www.mongodb.com/docs/generative-ai-faq/.
    id str
    Autogenerated Unique ID for this data source.
    is_deleted bool
    Flag that indicates whether this organization has been deleted.
    links Sequence[GetOrganizationsResultLink]
    multi_factor_auth_required bool
    Flag that indicates whether to require users to set up Multi-Factor Authentication (MFA) before accessing the specified organization. To learn more, see: https://www.mongodb.com/docs/atlas/security-multi-factor-authentication/.
    name str
    Human-readable label that identifies the organization.
    restrict_employee_access bool
    Flag that indicates whether to block MongoDB Support from accessing Atlas infrastructure for any deployment in the specified organization without explicit permission. Once this setting is turned on, you can grant MongoDB Support a 24-hour bypass access to the Atlas deployment to resolve support issues. To learn more, see: https://www.mongodb.com/docs/atlas/security-restrict-support-access/.
    security_contact str
    String that specifies a single email address for the specified organization to receive security-related notifications. Specifying a security contact does not grant them authorization or access to Atlas for security decisions or approvals.
    skip_default_alerts_settings bool
    users Sequence[GetOrganizationsResultUser]
    Returns list of all pending and active MongoDB Cloud users associated with the specified organization.
    apiAccessListRequired Boolean
    Flag that indicates whether to require API operations to originate from an IP Address added to the API access list for the specified organization.
    genAiFeaturesEnabled Boolean
    Flag that indicates whether this organization has access to generative AI features. This setting only applies to Atlas Commercial and defaults to true. With this setting on, Project Owners may be able to enable or disable individual AI features at the project level. To learn more, see https://www.mongodb.com/docs/generative-ai-faq/.
    id String
    Autogenerated Unique ID for this data source.
    isDeleted Boolean
    Flag that indicates whether this organization has been deleted.
    links List<Property Map>
    multiFactorAuthRequired Boolean
    Flag that indicates whether to require users to set up Multi-Factor Authentication (MFA) before accessing the specified organization. To learn more, see: https://www.mongodb.com/docs/atlas/security-multi-factor-authentication/.
    name String
    Human-readable label that identifies the organization.
    restrictEmployeeAccess Boolean
    Flag that indicates whether to block MongoDB Support from accessing Atlas infrastructure for any deployment in the specified organization without explicit permission. Once this setting is turned on, you can grant MongoDB Support a 24-hour bypass access to the Atlas deployment to resolve support issues. To learn more, see: https://www.mongodb.com/docs/atlas/security-restrict-support-access/.
    securityContact String
    String that specifies a single email address for the specified organization to receive security-related notifications. Specifying a security contact does not grant them authorization or access to Atlas for security decisions or approvals.
    skipDefaultAlertsSettings Boolean
    users List<Property Map>
    Returns list of all pending and active MongoDB Cloud users associated with the specified organization.
    Href string
    Rel string
    Href string
    Rel string
    href String
    rel String
    href string
    rel string
    href str
    rel str
    href String
    rel String

    GetOrganizationsResultUser

    Country string
    Two-character alphabetical string that identifies the MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
    CreatedAt string
    Date and time when MongoDB Cloud created the current account. This value is in the ISO 8601 timestamp format in UTC.
    FirstName string
    First or given name that belongs to the MongoDB Cloud user.
    Id string
    Unique 24-hexadecimal digit string that identifies the MongoDB Cloud user.
    InvitationCreatedAt string
    Date and time when MongoDB Cloud sent the invitation. MongoDB Cloud represents this timestamp in ISO 8601 format in UTC.
    InvitationExpiresAt string
    Date and time when the invitation from MongoDB Cloud expires. MongoDB Cloud represents this timestamp in ISO 8601 format in UTC.
    InviterUsername string
    Username of the MongoDB Cloud user who sent the invitation to join the organization.
    LastAuth string
    Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.
    LastName string
    Last name, family name, or surname that belongs to the MongoDB Cloud user.
    MobileNumber string
    OrgMembershipStatus string
    String enum that indicates whether the MongoDB Cloud user has a pending invitation to join the organization or they are already active in the organization.
    Roles List<GetOrganizationsResultUserRole>
    Organization- and project-level roles assigned to one MongoDB Cloud user within one organization.

    • teamIds - List of unique 24-hexadecimal digit strings that identifies the teams to which this MongoDB Cloud user belongs.
    TeamIds List<string>
    Username string
    Email address that represents the username of the MongoDB Cloud user.
    Country string
    Two-character alphabetical string that identifies the MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
    CreatedAt string
    Date and time when MongoDB Cloud created the current account. This value is in the ISO 8601 timestamp format in UTC.
    FirstName string
    First or given name that belongs to the MongoDB Cloud user.
    Id string
    Unique 24-hexadecimal digit string that identifies the MongoDB Cloud user.
    InvitationCreatedAt string
    Date and time when MongoDB Cloud sent the invitation. MongoDB Cloud represents this timestamp in ISO 8601 format in UTC.
    InvitationExpiresAt string
    Date and time when the invitation from MongoDB Cloud expires. MongoDB Cloud represents this timestamp in ISO 8601 format in UTC.
    InviterUsername string
    Username of the MongoDB Cloud user who sent the invitation to join the organization.
    LastAuth string
    Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.
    LastName string
    Last name, family name, or surname that belongs to the MongoDB Cloud user.
    MobileNumber string
    OrgMembershipStatus string
    String enum that indicates whether the MongoDB Cloud user has a pending invitation to join the organization or they are already active in the organization.
    Roles []GetOrganizationsResultUserRole
    Organization- and project-level roles assigned to one MongoDB Cloud user within one organization.

    • teamIds - List of unique 24-hexadecimal digit strings that identifies the teams to which this MongoDB Cloud user belongs.
    TeamIds []string
    Username string
    Email address that represents the username of the MongoDB Cloud user.
    country String
    Two-character alphabetical string that identifies the MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
    createdAt String
    Date and time when MongoDB Cloud created the current account. This value is in the ISO 8601 timestamp format in UTC.
    firstName String
    First or given name that belongs to the MongoDB Cloud user.
    id String
    Unique 24-hexadecimal digit string that identifies the MongoDB Cloud user.
    invitationCreatedAt String
    Date and time when MongoDB Cloud sent the invitation. MongoDB Cloud represents this timestamp in ISO 8601 format in UTC.
    invitationExpiresAt String
    Date and time when the invitation from MongoDB Cloud expires. MongoDB Cloud represents this timestamp in ISO 8601 format in UTC.
    inviterUsername String
    Username of the MongoDB Cloud user who sent the invitation to join the organization.
    lastAuth String
    Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.
    lastName String
    Last name, family name, or surname that belongs to the MongoDB Cloud user.
    mobileNumber String
    orgMembershipStatus String
    String enum that indicates whether the MongoDB Cloud user has a pending invitation to join the organization or they are already active in the organization.
    roles List<GetOrganizationsResultUserRole>
    Organization- and project-level roles assigned to one MongoDB Cloud user within one organization.

    • teamIds - List of unique 24-hexadecimal digit strings that identifies the teams to which this MongoDB Cloud user belongs.
    teamIds List<String>
    username String
    Email address that represents the username of the MongoDB Cloud user.
    country string
    Two-character alphabetical string that identifies the MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
    createdAt string
    Date and time when MongoDB Cloud created the current account. This value is in the ISO 8601 timestamp format in UTC.
    firstName string
    First or given name that belongs to the MongoDB Cloud user.
    id string
    Unique 24-hexadecimal digit string that identifies the MongoDB Cloud user.
    invitationCreatedAt string
    Date and time when MongoDB Cloud sent the invitation. MongoDB Cloud represents this timestamp in ISO 8601 format in UTC.
    invitationExpiresAt string
    Date and time when the invitation from MongoDB Cloud expires. MongoDB Cloud represents this timestamp in ISO 8601 format in UTC.
    inviterUsername string
    Username of the MongoDB Cloud user who sent the invitation to join the organization.
    lastAuth string
    Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.
    lastName string
    Last name, family name, or surname that belongs to the MongoDB Cloud user.
    mobileNumber string
    orgMembershipStatus string
    String enum that indicates whether the MongoDB Cloud user has a pending invitation to join the organization or they are already active in the organization.
    roles GetOrganizationsResultUserRole[]
    Organization- and project-level roles assigned to one MongoDB Cloud user within one organization.

    • teamIds - List of unique 24-hexadecimal digit strings that identifies the teams to which this MongoDB Cloud user belongs.
    teamIds string[]
    username string
    Email address that represents the username of the MongoDB Cloud user.
    country str
    Two-character alphabetical string that identifies the MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
    created_at str
    Date and time when MongoDB Cloud created the current account. This value is in the ISO 8601 timestamp format in UTC.
    first_name str
    First or given name that belongs to the MongoDB Cloud user.
    id str
    Unique 24-hexadecimal digit string that identifies the MongoDB Cloud user.
    invitation_created_at str
    Date and time when MongoDB Cloud sent the invitation. MongoDB Cloud represents this timestamp in ISO 8601 format in UTC.
    invitation_expires_at str
    Date and time when the invitation from MongoDB Cloud expires. MongoDB Cloud represents this timestamp in ISO 8601 format in UTC.
    inviter_username str
    Username of the MongoDB Cloud user who sent the invitation to join the organization.
    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 Cloud user.
    mobile_number str
    org_membership_status str
    String enum that indicates whether the MongoDB Cloud user has a pending invitation to join the organization or they are already active in the organization.
    roles Sequence[GetOrganizationsResultUserRole]
    Organization- and project-level roles assigned to one MongoDB Cloud user within one organization.

    • teamIds - List of unique 24-hexadecimal digit strings that identifies the teams to which this MongoDB Cloud user belongs.
    team_ids Sequence[str]
    username str
    Email address that represents the username of the MongoDB Cloud user.
    country String
    Two-character alphabetical string that identifies the MongoDB Cloud user's geographic location. This parameter uses the ISO 3166-1a2 code format.
    createdAt String
    Date and time when MongoDB Cloud created the current account. This value is in the ISO 8601 timestamp format in UTC.
    firstName String
    First or given name that belongs to the MongoDB Cloud user.
    id String
    Unique 24-hexadecimal digit string that identifies the MongoDB Cloud user.
    invitationCreatedAt String
    Date and time when MongoDB Cloud sent the invitation. MongoDB Cloud represents this timestamp in ISO 8601 format in UTC.
    invitationExpiresAt String
    Date and time when the invitation from MongoDB Cloud expires. MongoDB Cloud represents this timestamp in ISO 8601 format in UTC.
    inviterUsername String
    Username of the MongoDB Cloud user who sent the invitation to join the organization.
    lastAuth String
    Date and time when the current account last authenticated. This value is in the ISO 8601 timestamp format in UTC.
    lastName String
    Last name, family name, or surname that belongs to the MongoDB Cloud user.
    mobileNumber String
    orgMembershipStatus String
    String enum that indicates whether the MongoDB Cloud user has a pending invitation to join the organization or they are already active in the organization.
    roles List<Property Map>
    Organization- and project-level roles assigned to one MongoDB Cloud user within one organization.

    • teamIds - List of unique 24-hexadecimal digit strings that identifies the teams to which this MongoDB Cloud user belongs.
    teamIds List<String>
    username String
    Email address that represents the username of the MongoDB Cloud user.

    GetOrganizationsResultUserRole

    GetOrganizationsResultUserRoleProjectRoleAssignment

    ProjectId string
    ProjectRoles List<string>
    ProjectId string
    ProjectRoles []string
    projectId String
    projectRoles List<String>
    projectId string
    projectRoles string[]
    project_id str
    project_roles Sequence[str]
    projectId String
    projectRoles List<String>

    Package Details

    Repository
    MongoDB Atlas pulumi/pulumi-mongodbatlas
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the mongodbatlas Terraform Provider.
    mongodbatlas logo
    MongoDB Atlas v4.0.0 published on Tuesday, Dec 30, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate