published on Thursday, Mar 12, 2026 by Pulumi
published on Thursday, Mar 12, 2026 by Pulumi
Cloud Provider Access Configuration Paths
The Terraform MongoDB Atlas Provider offers a two-resource path to perform an authorization for a cloud provider role.
- The first resource,
mongodbatlas.CloudProviderAccessSetup, only generates the initial configuration (create, delete operations). - The second resource,
mongodbatlas.CloudProviderAccessAuthorization, helps to perform the authorization using therole_idof the first resource.
This path is helpful in a multi-provider Terraform file, and allows for a single and decoupled apply. See example of this two-resource path option with AWS Cloud here, AZURE Cloud here and GCP Cloud here.
## mongodbatlas.CloudProviderAccessAuthorization This is the second resource in the two-resource path as described above.
mongodbatlas.CloudProviderAccessAuthorization allows you to authorize an AWS, AZURE or GCP IAM roles in Atlas.
IMPORTANT: Changes to
project_idorrole_idwill result in the destruction and recreation of the authorization resource. This action happens as these fields uniquely identify the authorization and cannot be modified in-place.
Example Usage
With AWS
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const setupOnly = new mongodbatlas.CloudProviderAccessSetup("setup_only", {
projectId: "64259ee860c43338194b0f8e",
providerName: "AWS",
});
const authRole = new mongodbatlas.CloudProviderAccessAuthorization("auth_role", {
projectId: setupOnly.projectId,
roleId: setupOnly.roleId,
aws: {
iamAssumedRoleArn: "arn:aws:iam::<AWS_ACCOUNT_ID>:role/test-user-role",
},
});
import pulumi
import pulumi_mongodbatlas as mongodbatlas
setup_only = mongodbatlas.CloudProviderAccessSetup("setup_only",
project_id="64259ee860c43338194b0f8e",
provider_name="AWS")
auth_role = mongodbatlas.CloudProviderAccessAuthorization("auth_role",
project_id=setup_only.project_id,
role_id=setup_only.role_id,
aws={
"iam_assumed_role_arn": "arn:aws:iam::<AWS_ACCOUNT_ID>:role/test-user-role",
})
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 {
setupOnly, err := mongodbatlas.NewCloudProviderAccessSetup(ctx, "setup_only", &mongodbatlas.CloudProviderAccessSetupArgs{
ProjectId: pulumi.String("64259ee860c43338194b0f8e"),
ProviderName: pulumi.String("AWS"),
})
if err != nil {
return err
}
_, err = mongodbatlas.NewCloudProviderAccessAuthorization(ctx, "auth_role", &mongodbatlas.CloudProviderAccessAuthorizationArgs{
ProjectId: setupOnly.ProjectId,
RoleId: setupOnly.RoleId,
Aws: &mongodbatlas.CloudProviderAccessAuthorizationAwsArgs{
IamAssumedRoleArn: pulumi.String("arn:aws:iam::<AWS_ACCOUNT_ID>:role/test-user-role"),
},
})
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 setupOnly = new Mongodbatlas.CloudProviderAccessSetup("setup_only", new()
{
ProjectId = "64259ee860c43338194b0f8e",
ProviderName = "AWS",
});
var authRole = new Mongodbatlas.CloudProviderAccessAuthorization("auth_role", new()
{
ProjectId = setupOnly.ProjectId,
RoleId = setupOnly.RoleId,
Aws = new Mongodbatlas.Inputs.CloudProviderAccessAuthorizationAwsArgs
{
IamAssumedRoleArn = "arn:aws:iam::<AWS_ACCOUNT_ID>:role/test-user-role",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.mongodbatlas.CloudProviderAccessSetup;
import com.pulumi.mongodbatlas.CloudProviderAccessSetupArgs;
import com.pulumi.mongodbatlas.CloudProviderAccessAuthorization;
import com.pulumi.mongodbatlas.CloudProviderAccessAuthorizationArgs;
import com.pulumi.mongodbatlas.inputs.CloudProviderAccessAuthorizationAwsArgs;
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) {
var setupOnly = new CloudProviderAccessSetup("setupOnly", CloudProviderAccessSetupArgs.builder()
.projectId("64259ee860c43338194b0f8e")
.providerName("AWS")
.build());
var authRole = new CloudProviderAccessAuthorization("authRole", CloudProviderAccessAuthorizationArgs.builder()
.projectId(setupOnly.projectId())
.roleId(setupOnly.roleId())
.aws(CloudProviderAccessAuthorizationAwsArgs.builder()
.iamAssumedRoleArn("arn:aws:iam::<AWS_ACCOUNT_ID>:role/test-user-role")
.build())
.build());
}
}
resources:
setupOnly:
type: mongodbatlas:CloudProviderAccessSetup
name: setup_only
properties:
projectId: 64259ee860c43338194b0f8e
providerName: AWS
authRole:
type: mongodbatlas:CloudProviderAccessAuthorization
name: auth_role
properties:
projectId: ${setupOnly.projectId}
roleId: ${setupOnly.roleId}
aws:
iamAssumedRoleArn: arn:aws:iam::<AWS_ACCOUNT_ID>:role/test-user-role
With Azure
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const setupOnly = new mongodbatlas.CloudProviderAccessSetup("setup_only", {
projectId: "64259ee860c43338194b0f8e",
providerName: "AZURE",
azureConfigs: [{
atlasAzureAppId: "9f2deb0d-be22-4524-a403-df531868bac0",
servicePrincipalId: "22f1d2a6-d0e9-482a-83a4-b8dd7dddc2c1",
tenantId: "91402384-d71e-22f5-22dd-759e272cdc1c",
}],
});
const authRole = new mongodbatlas.CloudProviderAccessAuthorization("auth_role", {
projectId: setupOnly.projectId,
roleId: setupOnly.roleId,
azure: {
atlasAzureAppId: "9f2deb0d-be22-4524-a403-df531868bac0",
servicePrincipalId: "22f1d2a6-d0e9-482a-83a4-b8dd7dddc2c1",
tenantId: "91402384-d71e-22f5-22dd-759e272cdc1c",
},
});
import pulumi
import pulumi_mongodbatlas as mongodbatlas
setup_only = mongodbatlas.CloudProviderAccessSetup("setup_only",
project_id="64259ee860c43338194b0f8e",
provider_name="AZURE",
azure_configs=[{
"atlas_azure_app_id": "9f2deb0d-be22-4524-a403-df531868bac0",
"service_principal_id": "22f1d2a6-d0e9-482a-83a4-b8dd7dddc2c1",
"tenant_id": "91402384-d71e-22f5-22dd-759e272cdc1c",
}])
auth_role = mongodbatlas.CloudProviderAccessAuthorization("auth_role",
project_id=setup_only.project_id,
role_id=setup_only.role_id,
azure={
"atlas_azure_app_id": "9f2deb0d-be22-4524-a403-df531868bac0",
"service_principal_id": "22f1d2a6-d0e9-482a-83a4-b8dd7dddc2c1",
"tenant_id": "91402384-d71e-22f5-22dd-759e272cdc1c",
})
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 {
setupOnly, err := mongodbatlas.NewCloudProviderAccessSetup(ctx, "setup_only", &mongodbatlas.CloudProviderAccessSetupArgs{
ProjectId: pulumi.String("64259ee860c43338194b0f8e"),
ProviderName: pulumi.String("AZURE"),
AzureConfigs: mongodbatlas.CloudProviderAccessSetupAzureConfigArray{
&mongodbatlas.CloudProviderAccessSetupAzureConfigArgs{
AtlasAzureAppId: pulumi.String("9f2deb0d-be22-4524-a403-df531868bac0"),
ServicePrincipalId: pulumi.String("22f1d2a6-d0e9-482a-83a4-b8dd7dddc2c1"),
TenantId: pulumi.String("91402384-d71e-22f5-22dd-759e272cdc1c"),
},
},
})
if err != nil {
return err
}
_, err = mongodbatlas.NewCloudProviderAccessAuthorization(ctx, "auth_role", &mongodbatlas.CloudProviderAccessAuthorizationArgs{
ProjectId: setupOnly.ProjectId,
RoleId: setupOnly.RoleId,
Azure: &mongodbatlas.CloudProviderAccessAuthorizationAzureArgs{
AtlasAzureAppId: pulumi.String("9f2deb0d-be22-4524-a403-df531868bac0"),
ServicePrincipalId: pulumi.String("22f1d2a6-d0e9-482a-83a4-b8dd7dddc2c1"),
TenantId: pulumi.String("91402384-d71e-22f5-22dd-759e272cdc1c"),
},
})
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 setupOnly = new Mongodbatlas.CloudProviderAccessSetup("setup_only", new()
{
ProjectId = "64259ee860c43338194b0f8e",
ProviderName = "AZURE",
AzureConfigs = new[]
{
new Mongodbatlas.Inputs.CloudProviderAccessSetupAzureConfigArgs
{
AtlasAzureAppId = "9f2deb0d-be22-4524-a403-df531868bac0",
ServicePrincipalId = "22f1d2a6-d0e9-482a-83a4-b8dd7dddc2c1",
TenantId = "91402384-d71e-22f5-22dd-759e272cdc1c",
},
},
});
var authRole = new Mongodbatlas.CloudProviderAccessAuthorization("auth_role", new()
{
ProjectId = setupOnly.ProjectId,
RoleId = setupOnly.RoleId,
Azure = new Mongodbatlas.Inputs.CloudProviderAccessAuthorizationAzureArgs
{
AtlasAzureAppId = "9f2deb0d-be22-4524-a403-df531868bac0",
ServicePrincipalId = "22f1d2a6-d0e9-482a-83a4-b8dd7dddc2c1",
TenantId = "91402384-d71e-22f5-22dd-759e272cdc1c",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.mongodbatlas.CloudProviderAccessSetup;
import com.pulumi.mongodbatlas.CloudProviderAccessSetupArgs;
import com.pulumi.mongodbatlas.inputs.CloudProviderAccessSetupAzureConfigArgs;
import com.pulumi.mongodbatlas.CloudProviderAccessAuthorization;
import com.pulumi.mongodbatlas.CloudProviderAccessAuthorizationArgs;
import com.pulumi.mongodbatlas.inputs.CloudProviderAccessAuthorizationAzureArgs;
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) {
var setupOnly = new CloudProviderAccessSetup("setupOnly", CloudProviderAccessSetupArgs.builder()
.projectId("64259ee860c43338194b0f8e")
.providerName("AZURE")
.azureConfigs(CloudProviderAccessSetupAzureConfigArgs.builder()
.atlasAzureAppId("9f2deb0d-be22-4524-a403-df531868bac0")
.servicePrincipalId("22f1d2a6-d0e9-482a-83a4-b8dd7dddc2c1")
.tenantId("91402384-d71e-22f5-22dd-759e272cdc1c")
.build())
.build());
var authRole = new CloudProviderAccessAuthorization("authRole", CloudProviderAccessAuthorizationArgs.builder()
.projectId(setupOnly.projectId())
.roleId(setupOnly.roleId())
.azure(CloudProviderAccessAuthorizationAzureArgs.builder()
.atlasAzureAppId("9f2deb0d-be22-4524-a403-df531868bac0")
.servicePrincipalId("22f1d2a6-d0e9-482a-83a4-b8dd7dddc2c1")
.tenantId("91402384-d71e-22f5-22dd-759e272cdc1c")
.build())
.build());
}
}
resources:
setupOnly:
type: mongodbatlas:CloudProviderAccessSetup
name: setup_only
properties:
projectId: 64259ee860c43338194b0f8e
providerName: AZURE
azureConfigs:
- atlasAzureAppId: 9f2deb0d-be22-4524-a403-df531868bac0
servicePrincipalId: 22f1d2a6-d0e9-482a-83a4-b8dd7dddc2c1
tenantId: 91402384-d71e-22f5-22dd-759e272cdc1c
authRole:
type: mongodbatlas:CloudProviderAccessAuthorization
name: auth_role
properties:
projectId: ${setupOnly.projectId}
roleId: ${setupOnly.roleId}
azure:
atlasAzureAppId: 9f2deb0d-be22-4524-a403-df531868bac0
servicePrincipalId: 22f1d2a6-d0e9-482a-83a4-b8dd7dddc2c1
tenantId: 91402384-d71e-22f5-22dd-759e272cdc1c
With GCP
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const setupOnly = new mongodbatlas.CloudProviderAccessSetup("setup_only", {
projectId: "64259ee860c43338194b0f8e",
providerName: "GCP",
});
const authRole = new mongodbatlas.CloudProviderAccessAuthorization("auth_role", {
projectId: setupOnly.projectId,
roleId: setupOnly.roleId,
});
import pulumi
import pulumi_mongodbatlas as mongodbatlas
setup_only = mongodbatlas.CloudProviderAccessSetup("setup_only",
project_id="64259ee860c43338194b0f8e",
provider_name="GCP")
auth_role = mongodbatlas.CloudProviderAccessAuthorization("auth_role",
project_id=setup_only.project_id,
role_id=setup_only.role_id)
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 {
setupOnly, err := mongodbatlas.NewCloudProviderAccessSetup(ctx, "setup_only", &mongodbatlas.CloudProviderAccessSetupArgs{
ProjectId: pulumi.String("64259ee860c43338194b0f8e"),
ProviderName: pulumi.String("GCP"),
})
if err != nil {
return err
}
_, err = mongodbatlas.NewCloudProviderAccessAuthorization(ctx, "auth_role", &mongodbatlas.CloudProviderAccessAuthorizationArgs{
ProjectId: setupOnly.ProjectId,
RoleId: setupOnly.RoleId,
})
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 setupOnly = new Mongodbatlas.CloudProviderAccessSetup("setup_only", new()
{
ProjectId = "64259ee860c43338194b0f8e",
ProviderName = "GCP",
});
var authRole = new Mongodbatlas.CloudProviderAccessAuthorization("auth_role", new()
{
ProjectId = setupOnly.ProjectId,
RoleId = setupOnly.RoleId,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.mongodbatlas.CloudProviderAccessSetup;
import com.pulumi.mongodbatlas.CloudProviderAccessSetupArgs;
import com.pulumi.mongodbatlas.CloudProviderAccessAuthorization;
import com.pulumi.mongodbatlas.CloudProviderAccessAuthorizationArgs;
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) {
var setupOnly = new CloudProviderAccessSetup("setupOnly", CloudProviderAccessSetupArgs.builder()
.projectId("64259ee860c43338194b0f8e")
.providerName("GCP")
.build());
var authRole = new CloudProviderAccessAuthorization("authRole", CloudProviderAccessAuthorizationArgs.builder()
.projectId(setupOnly.projectId())
.roleId(setupOnly.roleId())
.build());
}
}
resources:
setupOnly:
type: mongodbatlas:CloudProviderAccessSetup
name: setup_only
properties:
projectId: 64259ee860c43338194b0f8e
providerName: GCP
authRole:
type: mongodbatlas:CloudProviderAccessAuthorization
name: auth_role
properties:
projectId: ${setupOnly.projectId}
roleId: ${setupOnly.roleId}
Further Examples
- AWS Cloud Provider Access
- Azure Cloud Provider Access
- GCP Cloud Provider Access
Create CloudProviderAccessAuthorization Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudProviderAccessAuthorization(name: string, args: CloudProviderAccessAuthorizationArgs, opts?: CustomResourceOptions);@overload
def CloudProviderAccessAuthorization(resource_name: str,
args: CloudProviderAccessAuthorizationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudProviderAccessAuthorization(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_id: Optional[str] = None,
role_id: Optional[str] = None,
aws: Optional[CloudProviderAccessAuthorizationAwsArgs] = None,
azure: Optional[CloudProviderAccessAuthorizationAzureArgs] = None)func NewCloudProviderAccessAuthorization(ctx *Context, name string, args CloudProviderAccessAuthorizationArgs, opts ...ResourceOption) (*CloudProviderAccessAuthorization, error)public CloudProviderAccessAuthorization(string name, CloudProviderAccessAuthorizationArgs args, CustomResourceOptions? opts = null)
public CloudProviderAccessAuthorization(String name, CloudProviderAccessAuthorizationArgs args)
public CloudProviderAccessAuthorization(String name, CloudProviderAccessAuthorizationArgs args, CustomResourceOptions options)
type: mongodbatlas:CloudProviderAccessAuthorization
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args CloudProviderAccessAuthorizationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args CloudProviderAccessAuthorizationArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args CloudProviderAccessAuthorizationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudProviderAccessAuthorizationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudProviderAccessAuthorizationArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var cloudProviderAccessAuthorizationResource = new Mongodbatlas.CloudProviderAccessAuthorization("cloudProviderAccessAuthorizationResource", new()
{
ProjectId = "string",
RoleId = "string",
Aws = new Mongodbatlas.Inputs.CloudProviderAccessAuthorizationAwsArgs
{
IamAssumedRoleArn = "string",
},
Azure = new Mongodbatlas.Inputs.CloudProviderAccessAuthorizationAzureArgs
{
AtlasAzureAppId = "string",
ServicePrincipalId = "string",
TenantId = "string",
},
});
example, err := mongodbatlas.NewCloudProviderAccessAuthorization(ctx, "cloudProviderAccessAuthorizationResource", &mongodbatlas.CloudProviderAccessAuthorizationArgs{
ProjectId: pulumi.String("string"),
RoleId: pulumi.String("string"),
Aws: &mongodbatlas.CloudProviderAccessAuthorizationAwsArgs{
IamAssumedRoleArn: pulumi.String("string"),
},
Azure: &mongodbatlas.CloudProviderAccessAuthorizationAzureArgs{
AtlasAzureAppId: pulumi.String("string"),
ServicePrincipalId: pulumi.String("string"),
TenantId: pulumi.String("string"),
},
})
var cloudProviderAccessAuthorizationResource = new CloudProviderAccessAuthorization("cloudProviderAccessAuthorizationResource", CloudProviderAccessAuthorizationArgs.builder()
.projectId("string")
.roleId("string")
.aws(CloudProviderAccessAuthorizationAwsArgs.builder()
.iamAssumedRoleArn("string")
.build())
.azure(CloudProviderAccessAuthorizationAzureArgs.builder()
.atlasAzureAppId("string")
.servicePrincipalId("string")
.tenantId("string")
.build())
.build());
cloud_provider_access_authorization_resource = mongodbatlas.CloudProviderAccessAuthorization("cloudProviderAccessAuthorizationResource",
project_id="string",
role_id="string",
aws={
"iam_assumed_role_arn": "string",
},
azure={
"atlas_azure_app_id": "string",
"service_principal_id": "string",
"tenant_id": "string",
})
const cloudProviderAccessAuthorizationResource = new mongodbatlas.CloudProviderAccessAuthorization("cloudProviderAccessAuthorizationResource", {
projectId: "string",
roleId: "string",
aws: {
iamAssumedRoleArn: "string",
},
azure: {
atlasAzureAppId: "string",
servicePrincipalId: "string",
tenantId: "string",
},
});
type: mongodbatlas:CloudProviderAccessAuthorization
properties:
aws:
iamAssumedRoleArn: string
azure:
atlasAzureAppId: string
servicePrincipalId: string
tenantId: string
projectId: string
roleId: string
CloudProviderAccessAuthorization Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The CloudProviderAccessAuthorization resource accepts the following input properties:
- Project
Id string - The unique ID for the project. WARNING: Changing the
project_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource. - Role
Id string The unique ID of this role returned by the mongodb atlas api. WARNING: Changing the
role_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource.Conditional
- Aws
Cloud
Provider Access Authorization Aws - Azure
Cloud
Provider Access Authorization Azure
- Project
Id string - The unique ID for the project. WARNING: Changing the
project_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource. - Role
Id string The unique ID of this role returned by the mongodb atlas api. WARNING: Changing the
role_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource.Conditional
- Aws
Cloud
Provider Access Authorization Aws Args - Azure
Cloud
Provider Access Authorization Azure Args
- project
Id String - The unique ID for the project. WARNING: Changing the
project_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource. - role
Id String The unique ID of this role returned by the mongodb atlas api. WARNING: Changing the
role_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource.Conditional
- aws
Cloud
Provider Access Authorization Aws - azure
Cloud
Provider Access Authorization Azure
- project
Id string - The unique ID for the project. WARNING: Changing the
project_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource. - role
Id string The unique ID of this role returned by the mongodb atlas api. WARNING: Changing the
role_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource.Conditional
- aws
Cloud
Provider Access Authorization Aws - azure
Cloud
Provider Access Authorization Azure
- project_
id str - The unique ID for the project. WARNING: Changing the
project_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource. - role_
id str The unique ID of this role returned by the mongodb atlas api. WARNING: Changing the
role_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource.Conditional
- aws
Cloud
Provider Access Authorization Aws Args - azure
Cloud
Provider Access Authorization Azure Args
- project
Id String - The unique ID for the project. WARNING: Changing the
project_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource. - role
Id String The unique ID of this role returned by the mongodb atlas api. WARNING: Changing the
role_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource.Conditional
- aws Property Map
- azure Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudProviderAccessAuthorization resource produces the following output properties:
- string
- Date on which this role was authorized.
- Feature
Usages List<CloudProvider Access Authorization Feature Usage> - Atlas features this AWS IAM role is linked to.
- Gcps
List<Cloud
Provider Access Authorization Gcp> - Id string
- The provider-assigned unique ID for this managed resource.
- string
- Date on which this role was authorized.
- Feature
Usages []CloudProvider Access Authorization Feature Usage - Atlas features this AWS IAM role is linked to.
- Gcps
[]Cloud
Provider Access Authorization Gcp - Id string
- The provider-assigned unique ID for this managed resource.
- String
- Date on which this role was authorized.
- feature
Usages List<CloudProvider Access Authorization Feature Usage> - Atlas features this AWS IAM role is linked to.
- gcps
List<Cloud
Provider Access Authorization Gcp> - id String
- The provider-assigned unique ID for this managed resource.
- string
- Date on which this role was authorized.
- feature
Usages CloudProvider Access Authorization Feature Usage[] - Atlas features this AWS IAM role is linked to.
- gcps
Cloud
Provider Access Authorization Gcp[] - id string
- The provider-assigned unique ID for this managed resource.
- str
- Date on which this role was authorized.
- feature_
usages Sequence[CloudProvider Access Authorization Feature Usage] - Atlas features this AWS IAM role is linked to.
- gcps
Sequence[Cloud
Provider Access Authorization Gcp] - id str
- The provider-assigned unique ID for this managed resource.
- String
- Date on which this role was authorized.
- feature
Usages List<Property Map> - Atlas features this AWS IAM role is linked to.
- gcps List<Property Map>
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing CloudProviderAccessAuthorization Resource
Get an existing CloudProviderAccessAuthorization resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: CloudProviderAccessAuthorizationState, opts?: CustomResourceOptions): CloudProviderAccessAuthorization@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authorized_date: Optional[str] = None,
aws: Optional[CloudProviderAccessAuthorizationAwsArgs] = None,
azure: Optional[CloudProviderAccessAuthorizationAzureArgs] = None,
feature_usages: Optional[Sequence[CloudProviderAccessAuthorizationFeatureUsageArgs]] = None,
gcps: Optional[Sequence[CloudProviderAccessAuthorizationGcpArgs]] = None,
project_id: Optional[str] = None,
role_id: Optional[str] = None) -> CloudProviderAccessAuthorizationfunc GetCloudProviderAccessAuthorization(ctx *Context, name string, id IDInput, state *CloudProviderAccessAuthorizationState, opts ...ResourceOption) (*CloudProviderAccessAuthorization, error)public static CloudProviderAccessAuthorization Get(string name, Input<string> id, CloudProviderAccessAuthorizationState? state, CustomResourceOptions? opts = null)public static CloudProviderAccessAuthorization get(String name, Output<String> id, CloudProviderAccessAuthorizationState state, CustomResourceOptions options)resources: _: type: mongodbatlas:CloudProviderAccessAuthorization get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- string
- Date on which this role was authorized.
- Aws
Cloud
Provider Access Authorization Aws - Azure
Cloud
Provider Access Authorization Azure - Feature
Usages List<CloudProvider Access Authorization Feature Usage> - Atlas features this AWS IAM role is linked to.
- Gcps
List<Cloud
Provider Access Authorization Gcp> - Project
Id string - The unique ID for the project. WARNING: Changing the
project_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource. - Role
Id string The unique ID of this role returned by the mongodb atlas api. WARNING: Changing the
role_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource.Conditional
- string
- Date on which this role was authorized.
- Aws
Cloud
Provider Access Authorization Aws Args - Azure
Cloud
Provider Access Authorization Azure Args - Feature
Usages []CloudProvider Access Authorization Feature Usage Args - Atlas features this AWS IAM role is linked to.
- Gcps
[]Cloud
Provider Access Authorization Gcp Args - Project
Id string - The unique ID for the project. WARNING: Changing the
project_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource. - Role
Id string The unique ID of this role returned by the mongodb atlas api. WARNING: Changing the
role_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource.Conditional
- String
- Date on which this role was authorized.
- aws
Cloud
Provider Access Authorization Aws - azure
Cloud
Provider Access Authorization Azure - feature
Usages List<CloudProvider Access Authorization Feature Usage> - Atlas features this AWS IAM role is linked to.
- gcps
List<Cloud
Provider Access Authorization Gcp> - project
Id String - The unique ID for the project. WARNING: Changing the
project_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource. - role
Id String The unique ID of this role returned by the mongodb atlas api. WARNING: Changing the
role_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource.Conditional
- string
- Date on which this role was authorized.
- aws
Cloud
Provider Access Authorization Aws - azure
Cloud
Provider Access Authorization Azure - feature
Usages CloudProvider Access Authorization Feature Usage[] - Atlas features this AWS IAM role is linked to.
- gcps
Cloud
Provider Access Authorization Gcp[] - project
Id string - The unique ID for the project. WARNING: Changing the
project_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource. - role
Id string The unique ID of this role returned by the mongodb atlas api. WARNING: Changing the
role_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource.Conditional
- str
- Date on which this role was authorized.
- aws
Cloud
Provider Access Authorization Aws Args - azure
Cloud
Provider Access Authorization Azure Args - feature_
usages Sequence[CloudProvider Access Authorization Feature Usage Args] - Atlas features this AWS IAM role is linked to.
- gcps
Sequence[Cloud
Provider Access Authorization Gcp Args] - project_
id str - The unique ID for the project. WARNING: Changing the
project_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource. - role_
id str The unique ID of this role returned by the mongodb atlas api. WARNING: Changing the
role_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource.Conditional
- String
- Date on which this role was authorized.
- aws Property Map
- azure Property Map
- feature
Usages List<Property Map> - Atlas features this AWS IAM role is linked to.
- gcps List<Property Map>
- project
Id String - The unique ID for the project. WARNING: Changing the
project_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource. - role
Id String The unique ID of this role returned by the mongodb atlas api. WARNING: Changing the
role_idwill result in destruction of the existing authorization resource and the creation of a new authorization resource.Conditional
Supporting Types
CloudProviderAccessAuthorizationAws, CloudProviderAccessAuthorizationAwsArgs
- Iam
Assumed stringRole Arn - ARN of the IAM Role that Atlas assumes when accessing resources in your AWS account. This value is required after the creation (register of the role) as part of Set Up Unified AWS Access.
- Iam
Assumed stringRole Arn - ARN of the IAM Role that Atlas assumes when accessing resources in your AWS account. This value is required after the creation (register of the role) as part of Set Up Unified AWS Access.
- iam
Assumed StringRole Arn - ARN of the IAM Role that Atlas assumes when accessing resources in your AWS account. This value is required after the creation (register of the role) as part of Set Up Unified AWS Access.
- iam
Assumed stringRole Arn - ARN of the IAM Role that Atlas assumes when accessing resources in your AWS account. This value is required after the creation (register of the role) as part of Set Up Unified AWS Access.
- iam_
assumed_ strrole_ arn - ARN of the IAM Role that Atlas assumes when accessing resources in your AWS account. This value is required after the creation (register of the role) as part of Set Up Unified AWS Access.
- iam
Assumed StringRole Arn - ARN of the IAM Role that Atlas assumes when accessing resources in your AWS account. This value is required after the creation (register of the role) as part of Set Up Unified AWS Access.
CloudProviderAccessAuthorizationAzure, CloudProviderAccessAuthorizationAzureArgs
- Atlas
Azure stringApp Id - Azure Active Directory Application ID of Atlas.
- Service
Principal stringId - UUID string that identifies the Azure Service Principal.
- Tenant
Id string - UUID String that identifies the Azure Active Directory Tenant ID.
- Atlas
Azure stringApp Id - Azure Active Directory Application ID of Atlas.
- Service
Principal stringId - UUID string that identifies the Azure Service Principal.
- Tenant
Id string - UUID String that identifies the Azure Active Directory Tenant ID.
- atlas
Azure StringApp Id - Azure Active Directory Application ID of Atlas.
- service
Principal StringId - UUID string that identifies the Azure Service Principal.
- tenant
Id String - UUID String that identifies the Azure Active Directory Tenant ID.
- atlas
Azure stringApp Id - Azure Active Directory Application ID of Atlas.
- service
Principal stringId - UUID string that identifies the Azure Service Principal.
- tenant
Id string - UUID String that identifies the Azure Active Directory Tenant ID.
- atlas_
azure_ strapp_ id - Azure Active Directory Application ID of Atlas.
- service_
principal_ strid - UUID string that identifies the Azure Service Principal.
- tenant_
id str - UUID String that identifies the Azure Active Directory Tenant ID.
- atlas
Azure StringApp Id - Azure Active Directory Application ID of Atlas.
- service
Principal StringId - UUID string that identifies the Azure Service Principal.
- tenant
Id String - UUID String that identifies the Azure Active Directory Tenant ID.
CloudProviderAccessAuthorizationFeatureUsage, CloudProviderAccessAuthorizationFeatureUsageArgs
- Feature
Id Dictionary<string, string> - Feature
Type string
- Feature
Id map[string]string - Feature
Type string
- feature
Id Map<String,String> - feature
Type String
- feature
Id {[key: string]: string} - feature
Type string
- feature_
id Mapping[str, str] - feature_
type str
- feature
Id Map<String> - feature
Type String
CloudProviderAccessAuthorizationGcp, CloudProviderAccessAuthorizationGcpArgs
- Service
Account stringFor Atlas - Email address for the Google Service Account created by Atlas.
- Service
Account stringFor Atlas - Email address for the Google Service Account created by Atlas.
- service
Account StringFor Atlas - Email address for the Google Service Account created by Atlas.
- service
Account stringFor Atlas - Email address for the Google Service Account created by Atlas.
- service_
account_ strfor_ atlas - Email address for the Google Service Account created by Atlas.
- service
Account StringFor Atlas - Email address for the Google Service Account created by Atlas.
Import
mongodbatlas.CloudProviderAccessAuthorization You cannot import the Cloud Provider Access Authorization resource into Terraform. Instead, if the associated role is already authorized, you can recreate the resource without any adverse effects.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- MongoDB Atlas pulumi/pulumi-mongodbatlas
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
mongodbatlasTerraform Provider.
published on Thursday, Mar 12, 2026 by Pulumi
