mongodbatlas.PrivateLinkEndpoint
Explore with Pulumi AI
mongodbatlas.PrivateLinkEndpoint
provides a Private Endpoint resource. This represents a Private Endpoint Service that can be created in an Atlas project.
**IMPORTANT:**You must have one of the following roles to successfully handle the resource:
- Organization Owner
- Project Owner
NOTE: Groups and projects are synonymous terms. You may find group_id in the official documentation.
NOTE: A network container is created for a private endpoint to reside in if one does not yet exist in the project.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as mongodbatlas from "@pulumi/mongodbatlas";
const test = new mongodbatlas.PrivateLinkEndpoint("test", {
projectId: "<PROJECT-ID>",
providerName: "AWS/AZURE",
region: "US_EAST_1",
});
import pulumi
import pulumi_mongodbatlas as mongodbatlas
test = mongodbatlas.PrivateLinkEndpoint("test",
project_id="<PROJECT-ID>",
provider_name="AWS/AZURE",
region="US_EAST_1")
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.NewPrivateLinkEndpoint(ctx, "test", &mongodbatlas.PrivateLinkEndpointArgs{
ProjectId: pulumi.String("<PROJECT-ID>"),
ProviderName: pulumi.String("AWS/AZURE"),
Region: pulumi.String("US_EAST_1"),
})
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 = new Mongodbatlas.PrivateLinkEndpoint("test", new()
{
ProjectId = "<PROJECT-ID>",
ProviderName = "AWS/AZURE",
Region = "US_EAST_1",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.mongodbatlas.PrivateLinkEndpoint;
import com.pulumi.mongodbatlas.PrivateLinkEndpointArgs;
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 test = new PrivateLinkEndpoint("test", PrivateLinkEndpointArgs.builder()
.projectId("<PROJECT-ID>")
.providerName("AWS/AZURE")
.region("US_EAST_1")
.build());
}
}
resources:
test:
type: mongodbatlas:PrivateLinkEndpoint
properties:
projectId: <PROJECT-ID>
providerName: AWS/AZURE
region: US_EAST_1
Available complete examples
- Setup private connection to a MongoDB Atlas Cluster with AWS VPC
Create PrivateLinkEndpoint Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PrivateLinkEndpoint(name: string, args: PrivateLinkEndpointArgs, opts?: CustomResourceOptions);
@overload
def PrivateLinkEndpoint(resource_name: str,
args: PrivateLinkEndpointArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PrivateLinkEndpoint(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_id: Optional[str] = None,
provider_name: Optional[str] = None,
region: Optional[str] = None)
func NewPrivateLinkEndpoint(ctx *Context, name string, args PrivateLinkEndpointArgs, opts ...ResourceOption) (*PrivateLinkEndpoint, error)
public PrivateLinkEndpoint(string name, PrivateLinkEndpointArgs args, CustomResourceOptions? opts = null)
public PrivateLinkEndpoint(String name, PrivateLinkEndpointArgs args)
public PrivateLinkEndpoint(String name, PrivateLinkEndpointArgs args, CustomResourceOptions options)
type: mongodbatlas:PrivateLinkEndpoint
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 PrivateLinkEndpointArgs
- 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 PrivateLinkEndpointArgs
- 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 PrivateLinkEndpointArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PrivateLinkEndpointArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PrivateLinkEndpointArgs
- 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 privateLinkEndpointResource = new Mongodbatlas.PrivateLinkEndpoint("privateLinkEndpointResource", new()
{
ProjectId = "string",
ProviderName = "string",
Region = "string",
});
example, err := mongodbatlas.NewPrivateLinkEndpoint(ctx, "privateLinkEndpointResource", &mongodbatlas.PrivateLinkEndpointArgs{
ProjectId: pulumi.String("string"),
ProviderName: pulumi.String("string"),
Region: pulumi.String("string"),
})
var privateLinkEndpointResource = new PrivateLinkEndpoint("privateLinkEndpointResource", PrivateLinkEndpointArgs.builder()
.projectId("string")
.providerName("string")
.region("string")
.build());
private_link_endpoint_resource = mongodbatlas.PrivateLinkEndpoint("privateLinkEndpointResource",
project_id="string",
provider_name="string",
region="string")
const privateLinkEndpointResource = new mongodbatlas.PrivateLinkEndpoint("privateLinkEndpointResource", {
projectId: "string",
providerName: "string",
region: "string",
});
type: mongodbatlas:PrivateLinkEndpoint
properties:
projectId: string
providerName: string
region: string
PrivateLinkEndpoint Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The PrivateLinkEndpoint resource accepts the following input properties:
- Project
Id string - Required Unique identifier for the project.
- Provider
Name string - Name of the cloud provider for which you want to create the private endpoint service. Atlas accepts
AWS
,AZURE
orGCP
. - Region string
- Cloud provider region in which you want to create the private endpoint connection. Accepted values are: AWS regions, AZURE regions and GCP regions
- Project
Id string - Required Unique identifier for the project.
- Provider
Name string - Name of the cloud provider for which you want to create the private endpoint service. Atlas accepts
AWS
,AZURE
orGCP
. - Region string
- Cloud provider region in which you want to create the private endpoint connection. Accepted values are: AWS regions, AZURE regions and GCP regions
- project
Id String - Required Unique identifier for the project.
- provider
Name String - Name of the cloud provider for which you want to create the private endpoint service. Atlas accepts
AWS
,AZURE
orGCP
. - region String
- Cloud provider region in which you want to create the private endpoint connection. Accepted values are: AWS regions, AZURE regions and GCP regions
- project
Id string - Required Unique identifier for the project.
- provider
Name string - Name of the cloud provider for which you want to create the private endpoint service. Atlas accepts
AWS
,AZURE
orGCP
. - region string
- Cloud provider region in which you want to create the private endpoint connection. Accepted values are: AWS regions, AZURE regions and GCP regions
- project_
id str - Required Unique identifier for the project.
- provider_
name str - Name of the cloud provider for which you want to create the private endpoint service. Atlas accepts
AWS
,AZURE
orGCP
. - region str
- Cloud provider region in which you want to create the private endpoint connection. Accepted values are: AWS regions, AZURE regions and GCP regions
- project
Id String - Required Unique identifier for the project.
- provider
Name String - Name of the cloud provider for which you want to create the private endpoint service. Atlas accepts
AWS
,AZURE
orGCP
. - region String
- Cloud provider region in which you want to create the private endpoint connection. Accepted values are: AWS regions, AZURE regions and GCP regions
Outputs
All input properties are implicitly available as output properties. Additionally, the PrivateLinkEndpoint resource produces the following output properties:
- Endpoint
Group List<string>Names - GCP network endpoint groups corresponding to the Private Service Connect endpoint service.
- Endpoint
Service stringName - Name of the PrivateLink endpoint service in AWS. Returns null while the endpoint service is being created.
- Error
Message string - Error message pertaining to the AWS PrivateLink connection. Returns null if there are no errors. AWS:
- Id string
- The provider-assigned unique ID for this managed resource.
- Interface
Endpoints List<string> - Unique identifiers of the interface endpoints in your VPC that you added to the AWS PrivateLink connection. AZURE:
- Private
Endpoints List<string> - All private endpoints that you have added to this Azure Private Link Service.
- Private
Link stringId - Unique identifier of the AWS PrivateLink connection.
- Private
Link stringService Name - Name of the Azure Private Link Service that Atlas manages. GCP:
- Private
Link stringService Resource Id - Region
Name string - GCP region for the Private Service Connect endpoint service.
- Service
Attachment List<string>Names - Unique alphanumeric and special character strings that identify the service attachments associated with the GCP Private Service Connect endpoint service. Returns an empty list while Atlas creates the service attachments.
- Status string
- Status of the AWS PrivateLink connection or Status of the Azure Private Link Service. Atlas returns one of the following values:
AWS:
AVAILABLE
Atlas is creating the network load balancer and VPC endpoint service.WAITING_FOR_USER
The Atlas network load balancer and VPC endpoint service are created and ready to receive connection requests. When you receive this status, create an interface endpoint to continue configuring the AWS PrivateLink connection.FAILED
A system failure has occurred.DELETING
The AWS PrivateLink connection is being deleted. AZURE:AVAILABLE
Atlas created the load balancer and the Private Link Service.INITIATING
Atlas is creating the load balancer and the Private Link Service.FAILED
Atlas failed to create the load balancer and the Private Link service.DELETING
Atlas is deleting the Private Link service. GCP:AVAILABLE
Atlas created the load balancer and the GCP Private Service Connect service.INITIATING
Atlas is creating the load balancer and the GCP Private Service Connect service.FAILED
Atlas failed to create the load balancer and the GCP Private Service Connect service.DELETING
Atlas is deleting the GCP Private Service Connect service.
- Endpoint
Group []stringNames - GCP network endpoint groups corresponding to the Private Service Connect endpoint service.
- Endpoint
Service stringName - Name of the PrivateLink endpoint service in AWS. Returns null while the endpoint service is being created.
- Error
Message string - Error message pertaining to the AWS PrivateLink connection. Returns null if there are no errors. AWS:
- Id string
- The provider-assigned unique ID for this managed resource.
- Interface
Endpoints []string - Unique identifiers of the interface endpoints in your VPC that you added to the AWS PrivateLink connection. AZURE:
- Private
Endpoints []string - All private endpoints that you have added to this Azure Private Link Service.
- Private
Link stringId - Unique identifier of the AWS PrivateLink connection.
- Private
Link stringService Name - Name of the Azure Private Link Service that Atlas manages. GCP:
- Private
Link stringService Resource Id - Region
Name string - GCP region for the Private Service Connect endpoint service.
- Service
Attachment []stringNames - Unique alphanumeric and special character strings that identify the service attachments associated with the GCP Private Service Connect endpoint service. Returns an empty list while Atlas creates the service attachments.
- Status string
- Status of the AWS PrivateLink connection or Status of the Azure Private Link Service. Atlas returns one of the following values:
AWS:
AVAILABLE
Atlas is creating the network load balancer and VPC endpoint service.WAITING_FOR_USER
The Atlas network load balancer and VPC endpoint service are created and ready to receive connection requests. When you receive this status, create an interface endpoint to continue configuring the AWS PrivateLink connection.FAILED
A system failure has occurred.DELETING
The AWS PrivateLink connection is being deleted. AZURE:AVAILABLE
Atlas created the load balancer and the Private Link Service.INITIATING
Atlas is creating the load balancer and the Private Link Service.FAILED
Atlas failed to create the load balancer and the Private Link service.DELETING
Atlas is deleting the Private Link service. GCP:AVAILABLE
Atlas created the load balancer and the GCP Private Service Connect service.INITIATING
Atlas is creating the load balancer and the GCP Private Service Connect service.FAILED
Atlas failed to create the load balancer and the GCP Private Service Connect service.DELETING
Atlas is deleting the GCP Private Service Connect service.
- endpoint
Group List<String>Names - GCP network endpoint groups corresponding to the Private Service Connect endpoint service.
- endpoint
Service StringName - Name of the PrivateLink endpoint service in AWS. Returns null while the endpoint service is being created.
- error
Message String - Error message pertaining to the AWS PrivateLink connection. Returns null if there are no errors. AWS:
- id String
- The provider-assigned unique ID for this managed resource.
- interface
Endpoints List<String> - Unique identifiers of the interface endpoints in your VPC that you added to the AWS PrivateLink connection. AZURE:
- private
Endpoints List<String> - All private endpoints that you have added to this Azure Private Link Service.
- private
Link StringId - Unique identifier of the AWS PrivateLink connection.
- private
Link StringService Name - Name of the Azure Private Link Service that Atlas manages. GCP:
- private
Link StringService Resource Id - region
Name String - GCP region for the Private Service Connect endpoint service.
- service
Attachment List<String>Names - Unique alphanumeric and special character strings that identify the service attachments associated with the GCP Private Service Connect endpoint service. Returns an empty list while Atlas creates the service attachments.
- status String
- Status of the AWS PrivateLink connection or Status of the Azure Private Link Service. Atlas returns one of the following values:
AWS:
AVAILABLE
Atlas is creating the network load balancer and VPC endpoint service.WAITING_FOR_USER
The Atlas network load balancer and VPC endpoint service are created and ready to receive connection requests. When you receive this status, create an interface endpoint to continue configuring the AWS PrivateLink connection.FAILED
A system failure has occurred.DELETING
The AWS PrivateLink connection is being deleted. AZURE:AVAILABLE
Atlas created the load balancer and the Private Link Service.INITIATING
Atlas is creating the load balancer and the Private Link Service.FAILED
Atlas failed to create the load balancer and the Private Link service.DELETING
Atlas is deleting the Private Link service. GCP:AVAILABLE
Atlas created the load balancer and the GCP Private Service Connect service.INITIATING
Atlas is creating the load balancer and the GCP Private Service Connect service.FAILED
Atlas failed to create the load balancer and the GCP Private Service Connect service.DELETING
Atlas is deleting the GCP Private Service Connect service.
- endpoint
Group string[]Names - GCP network endpoint groups corresponding to the Private Service Connect endpoint service.
- endpoint
Service stringName - Name of the PrivateLink endpoint service in AWS. Returns null while the endpoint service is being created.
- error
Message string - Error message pertaining to the AWS PrivateLink connection. Returns null if there are no errors. AWS:
- id string
- The provider-assigned unique ID for this managed resource.
- interface
Endpoints string[] - Unique identifiers of the interface endpoints in your VPC that you added to the AWS PrivateLink connection. AZURE:
- private
Endpoints string[] - All private endpoints that you have added to this Azure Private Link Service.
- private
Link stringId - Unique identifier of the AWS PrivateLink connection.
- private
Link stringService Name - Name of the Azure Private Link Service that Atlas manages. GCP:
- private
Link stringService Resource Id - region
Name string - GCP region for the Private Service Connect endpoint service.
- service
Attachment string[]Names - Unique alphanumeric and special character strings that identify the service attachments associated with the GCP Private Service Connect endpoint service. Returns an empty list while Atlas creates the service attachments.
- status string
- Status of the AWS PrivateLink connection or Status of the Azure Private Link Service. Atlas returns one of the following values:
AWS:
AVAILABLE
Atlas is creating the network load balancer and VPC endpoint service.WAITING_FOR_USER
The Atlas network load balancer and VPC endpoint service are created and ready to receive connection requests. When you receive this status, create an interface endpoint to continue configuring the AWS PrivateLink connection.FAILED
A system failure has occurred.DELETING
The AWS PrivateLink connection is being deleted. AZURE:AVAILABLE
Atlas created the load balancer and the Private Link Service.INITIATING
Atlas is creating the load balancer and the Private Link Service.FAILED
Atlas failed to create the load balancer and the Private Link service.DELETING
Atlas is deleting the Private Link service. GCP:AVAILABLE
Atlas created the load balancer and the GCP Private Service Connect service.INITIATING
Atlas is creating the load balancer and the GCP Private Service Connect service.FAILED
Atlas failed to create the load balancer and the GCP Private Service Connect service.DELETING
Atlas is deleting the GCP Private Service Connect service.
- endpoint_
group_ Sequence[str]names - GCP network endpoint groups corresponding to the Private Service Connect endpoint service.
- endpoint_
service_ strname - Name of the PrivateLink endpoint service in AWS. Returns null while the endpoint service is being created.
- error_
message str - Error message pertaining to the AWS PrivateLink connection. Returns null if there are no errors. AWS:
- id str
- The provider-assigned unique ID for this managed resource.
- interface_
endpoints Sequence[str] - Unique identifiers of the interface endpoints in your VPC that you added to the AWS PrivateLink connection. AZURE:
- private_
endpoints Sequence[str] - All private endpoints that you have added to this Azure Private Link Service.
- private_
link_ strid - Unique identifier of the AWS PrivateLink connection.
- private_
link_ strservice_ name - Name of the Azure Private Link Service that Atlas manages. GCP:
- private_
link_ strservice_ resource_ id - region_
name str - GCP region for the Private Service Connect endpoint service.
- service_
attachment_ Sequence[str]names - Unique alphanumeric and special character strings that identify the service attachments associated with the GCP Private Service Connect endpoint service. Returns an empty list while Atlas creates the service attachments.
- status str
- Status of the AWS PrivateLink connection or Status of the Azure Private Link Service. Atlas returns one of the following values:
AWS:
AVAILABLE
Atlas is creating the network load balancer and VPC endpoint service.WAITING_FOR_USER
The Atlas network load balancer and VPC endpoint service are created and ready to receive connection requests. When you receive this status, create an interface endpoint to continue configuring the AWS PrivateLink connection.FAILED
A system failure has occurred.DELETING
The AWS PrivateLink connection is being deleted. AZURE:AVAILABLE
Atlas created the load balancer and the Private Link Service.INITIATING
Atlas is creating the load balancer and the Private Link Service.FAILED
Atlas failed to create the load balancer and the Private Link service.DELETING
Atlas is deleting the Private Link service. GCP:AVAILABLE
Atlas created the load balancer and the GCP Private Service Connect service.INITIATING
Atlas is creating the load balancer and the GCP Private Service Connect service.FAILED
Atlas failed to create the load balancer and the GCP Private Service Connect service.DELETING
Atlas is deleting the GCP Private Service Connect service.
- endpoint
Group List<String>Names - GCP network endpoint groups corresponding to the Private Service Connect endpoint service.
- endpoint
Service StringName - Name of the PrivateLink endpoint service in AWS. Returns null while the endpoint service is being created.
- error
Message String - Error message pertaining to the AWS PrivateLink connection. Returns null if there are no errors. AWS:
- id String
- The provider-assigned unique ID for this managed resource.
- interface
Endpoints List<String> - Unique identifiers of the interface endpoints in your VPC that you added to the AWS PrivateLink connection. AZURE:
- private
Endpoints List<String> - All private endpoints that you have added to this Azure Private Link Service.
- private
Link StringId - Unique identifier of the AWS PrivateLink connection.
- private
Link StringService Name - Name of the Azure Private Link Service that Atlas manages. GCP:
- private
Link StringService Resource Id - region
Name String - GCP region for the Private Service Connect endpoint service.
- service
Attachment List<String>Names - Unique alphanumeric and special character strings that identify the service attachments associated with the GCP Private Service Connect endpoint service. Returns an empty list while Atlas creates the service attachments.
- status String
- Status of the AWS PrivateLink connection or Status of the Azure Private Link Service. Atlas returns one of the following values:
AWS:
AVAILABLE
Atlas is creating the network load balancer and VPC endpoint service.WAITING_FOR_USER
The Atlas network load balancer and VPC endpoint service are created and ready to receive connection requests. When you receive this status, create an interface endpoint to continue configuring the AWS PrivateLink connection.FAILED
A system failure has occurred.DELETING
The AWS PrivateLink connection is being deleted. AZURE:AVAILABLE
Atlas created the load balancer and the Private Link Service.INITIATING
Atlas is creating the load balancer and the Private Link Service.FAILED
Atlas failed to create the load balancer and the Private Link service.DELETING
Atlas is deleting the Private Link service. GCP:AVAILABLE
Atlas created the load balancer and the GCP Private Service Connect service.INITIATING
Atlas is creating the load balancer and the GCP Private Service Connect service.FAILED
Atlas failed to create the load balancer and the GCP Private Service Connect service.DELETING
Atlas is deleting the GCP Private Service Connect service.
Look up Existing PrivateLinkEndpoint Resource
Get an existing PrivateLinkEndpoint 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?: PrivateLinkEndpointState, opts?: CustomResourceOptions): PrivateLinkEndpoint
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
endpoint_group_names: Optional[Sequence[str]] = None,
endpoint_service_name: Optional[str] = None,
error_message: Optional[str] = None,
interface_endpoints: Optional[Sequence[str]] = None,
private_endpoints: Optional[Sequence[str]] = None,
private_link_id: Optional[str] = None,
private_link_service_name: Optional[str] = None,
private_link_service_resource_id: Optional[str] = None,
project_id: Optional[str] = None,
provider_name: Optional[str] = None,
region: Optional[str] = None,
region_name: Optional[str] = None,
service_attachment_names: Optional[Sequence[str]] = None,
status: Optional[str] = None) -> PrivateLinkEndpoint
func GetPrivateLinkEndpoint(ctx *Context, name string, id IDInput, state *PrivateLinkEndpointState, opts ...ResourceOption) (*PrivateLinkEndpoint, error)
public static PrivateLinkEndpoint Get(string name, Input<string> id, PrivateLinkEndpointState? state, CustomResourceOptions? opts = null)
public static PrivateLinkEndpoint get(String name, Output<String> id, PrivateLinkEndpointState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Endpoint
Group List<string>Names - GCP network endpoint groups corresponding to the Private Service Connect endpoint service.
- Endpoint
Service stringName - Name of the PrivateLink endpoint service in AWS. Returns null while the endpoint service is being created.
- Error
Message string - Error message pertaining to the AWS PrivateLink connection. Returns null if there are no errors. AWS:
- Interface
Endpoints List<string> - Unique identifiers of the interface endpoints in your VPC that you added to the AWS PrivateLink connection. AZURE:
- Private
Endpoints List<string> - All private endpoints that you have added to this Azure Private Link Service.
- Private
Link stringId - Unique identifier of the AWS PrivateLink connection.
- Private
Link stringService Name - Name of the Azure Private Link Service that Atlas manages. GCP:
- Private
Link stringService Resource Id - Project
Id string - Required Unique identifier for the project.
- Provider
Name string - Name of the cloud provider for which you want to create the private endpoint service. Atlas accepts
AWS
,AZURE
orGCP
. - Region string
- Cloud provider region in which you want to create the private endpoint connection. Accepted values are: AWS regions, AZURE regions and GCP regions
- Region
Name string - GCP region for the Private Service Connect endpoint service.
- Service
Attachment List<string>Names - Unique alphanumeric and special character strings that identify the service attachments associated with the GCP Private Service Connect endpoint service. Returns an empty list while Atlas creates the service attachments.
- Status string
- Status of the AWS PrivateLink connection or Status of the Azure Private Link Service. Atlas returns one of the following values:
AWS:
AVAILABLE
Atlas is creating the network load balancer and VPC endpoint service.WAITING_FOR_USER
The Atlas network load balancer and VPC endpoint service are created and ready to receive connection requests. When you receive this status, create an interface endpoint to continue configuring the AWS PrivateLink connection.FAILED
A system failure has occurred.DELETING
The AWS PrivateLink connection is being deleted. AZURE:AVAILABLE
Atlas created the load balancer and the Private Link Service.INITIATING
Atlas is creating the load balancer and the Private Link Service.FAILED
Atlas failed to create the load balancer and the Private Link service.DELETING
Atlas is deleting the Private Link service. GCP:AVAILABLE
Atlas created the load balancer and the GCP Private Service Connect service.INITIATING
Atlas is creating the load balancer and the GCP Private Service Connect service.FAILED
Atlas failed to create the load balancer and the GCP Private Service Connect service.DELETING
Atlas is deleting the GCP Private Service Connect service.
- Endpoint
Group []stringNames - GCP network endpoint groups corresponding to the Private Service Connect endpoint service.
- Endpoint
Service stringName - Name of the PrivateLink endpoint service in AWS. Returns null while the endpoint service is being created.
- Error
Message string - Error message pertaining to the AWS PrivateLink connection. Returns null if there are no errors. AWS:
- Interface
Endpoints []string - Unique identifiers of the interface endpoints in your VPC that you added to the AWS PrivateLink connection. AZURE:
- Private
Endpoints []string - All private endpoints that you have added to this Azure Private Link Service.
- Private
Link stringId - Unique identifier of the AWS PrivateLink connection.
- Private
Link stringService Name - Name of the Azure Private Link Service that Atlas manages. GCP:
- Private
Link stringService Resource Id - Project
Id string - Required Unique identifier for the project.
- Provider
Name string - Name of the cloud provider for which you want to create the private endpoint service. Atlas accepts
AWS
,AZURE
orGCP
. - Region string
- Cloud provider region in which you want to create the private endpoint connection. Accepted values are: AWS regions, AZURE regions and GCP regions
- Region
Name string - GCP region for the Private Service Connect endpoint service.
- Service
Attachment []stringNames - Unique alphanumeric and special character strings that identify the service attachments associated with the GCP Private Service Connect endpoint service. Returns an empty list while Atlas creates the service attachments.
- Status string
- Status of the AWS PrivateLink connection or Status of the Azure Private Link Service. Atlas returns one of the following values:
AWS:
AVAILABLE
Atlas is creating the network load balancer and VPC endpoint service.WAITING_FOR_USER
The Atlas network load balancer and VPC endpoint service are created and ready to receive connection requests. When you receive this status, create an interface endpoint to continue configuring the AWS PrivateLink connection.FAILED
A system failure has occurred.DELETING
The AWS PrivateLink connection is being deleted. AZURE:AVAILABLE
Atlas created the load balancer and the Private Link Service.INITIATING
Atlas is creating the load balancer and the Private Link Service.FAILED
Atlas failed to create the load balancer and the Private Link service.DELETING
Atlas is deleting the Private Link service. GCP:AVAILABLE
Atlas created the load balancer and the GCP Private Service Connect service.INITIATING
Atlas is creating the load balancer and the GCP Private Service Connect service.FAILED
Atlas failed to create the load balancer and the GCP Private Service Connect service.DELETING
Atlas is deleting the GCP Private Service Connect service.
- endpoint
Group List<String>Names - GCP network endpoint groups corresponding to the Private Service Connect endpoint service.
- endpoint
Service StringName - Name of the PrivateLink endpoint service in AWS. Returns null while the endpoint service is being created.
- error
Message String - Error message pertaining to the AWS PrivateLink connection. Returns null if there are no errors. AWS:
- interface
Endpoints List<String> - Unique identifiers of the interface endpoints in your VPC that you added to the AWS PrivateLink connection. AZURE:
- private
Endpoints List<String> - All private endpoints that you have added to this Azure Private Link Service.
- private
Link StringId - Unique identifier of the AWS PrivateLink connection.
- private
Link StringService Name - Name of the Azure Private Link Service that Atlas manages. GCP:
- private
Link StringService Resource Id - project
Id String - Required Unique identifier for the project.
- provider
Name String - Name of the cloud provider for which you want to create the private endpoint service. Atlas accepts
AWS
,AZURE
orGCP
. - region String
- Cloud provider region in which you want to create the private endpoint connection. Accepted values are: AWS regions, AZURE regions and GCP regions
- region
Name String - GCP region for the Private Service Connect endpoint service.
- service
Attachment List<String>Names - Unique alphanumeric and special character strings that identify the service attachments associated with the GCP Private Service Connect endpoint service. Returns an empty list while Atlas creates the service attachments.
- status String
- Status of the AWS PrivateLink connection or Status of the Azure Private Link Service. Atlas returns one of the following values:
AWS:
AVAILABLE
Atlas is creating the network load balancer and VPC endpoint service.WAITING_FOR_USER
The Atlas network load balancer and VPC endpoint service are created and ready to receive connection requests. When you receive this status, create an interface endpoint to continue configuring the AWS PrivateLink connection.FAILED
A system failure has occurred.DELETING
The AWS PrivateLink connection is being deleted. AZURE:AVAILABLE
Atlas created the load balancer and the Private Link Service.INITIATING
Atlas is creating the load balancer and the Private Link Service.FAILED
Atlas failed to create the load balancer and the Private Link service.DELETING
Atlas is deleting the Private Link service. GCP:AVAILABLE
Atlas created the load balancer and the GCP Private Service Connect service.INITIATING
Atlas is creating the load balancer and the GCP Private Service Connect service.FAILED
Atlas failed to create the load balancer and the GCP Private Service Connect service.DELETING
Atlas is deleting the GCP Private Service Connect service.
- endpoint
Group string[]Names - GCP network endpoint groups corresponding to the Private Service Connect endpoint service.
- endpoint
Service stringName - Name of the PrivateLink endpoint service in AWS. Returns null while the endpoint service is being created.
- error
Message string - Error message pertaining to the AWS PrivateLink connection. Returns null if there are no errors. AWS:
- interface
Endpoints string[] - Unique identifiers of the interface endpoints in your VPC that you added to the AWS PrivateLink connection. AZURE:
- private
Endpoints string[] - All private endpoints that you have added to this Azure Private Link Service.
- private
Link stringId - Unique identifier of the AWS PrivateLink connection.
- private
Link stringService Name - Name of the Azure Private Link Service that Atlas manages. GCP:
- private
Link stringService Resource Id - project
Id string - Required Unique identifier for the project.
- provider
Name string - Name of the cloud provider for which you want to create the private endpoint service. Atlas accepts
AWS
,AZURE
orGCP
. - region string
- Cloud provider region in which you want to create the private endpoint connection. Accepted values are: AWS regions, AZURE regions and GCP regions
- region
Name string - GCP region for the Private Service Connect endpoint service.
- service
Attachment string[]Names - Unique alphanumeric and special character strings that identify the service attachments associated with the GCP Private Service Connect endpoint service. Returns an empty list while Atlas creates the service attachments.
- status string
- Status of the AWS PrivateLink connection or Status of the Azure Private Link Service. Atlas returns one of the following values:
AWS:
AVAILABLE
Atlas is creating the network load balancer and VPC endpoint service.WAITING_FOR_USER
The Atlas network load balancer and VPC endpoint service are created and ready to receive connection requests. When you receive this status, create an interface endpoint to continue configuring the AWS PrivateLink connection.FAILED
A system failure has occurred.DELETING
The AWS PrivateLink connection is being deleted. AZURE:AVAILABLE
Atlas created the load balancer and the Private Link Service.INITIATING
Atlas is creating the load balancer and the Private Link Service.FAILED
Atlas failed to create the load balancer and the Private Link service.DELETING
Atlas is deleting the Private Link service. GCP:AVAILABLE
Atlas created the load balancer and the GCP Private Service Connect service.INITIATING
Atlas is creating the load balancer and the GCP Private Service Connect service.FAILED
Atlas failed to create the load balancer and the GCP Private Service Connect service.DELETING
Atlas is deleting the GCP Private Service Connect service.
- endpoint_
group_ Sequence[str]names - GCP network endpoint groups corresponding to the Private Service Connect endpoint service.
- endpoint_
service_ strname - Name of the PrivateLink endpoint service in AWS. Returns null while the endpoint service is being created.
- error_
message str - Error message pertaining to the AWS PrivateLink connection. Returns null if there are no errors. AWS:
- interface_
endpoints Sequence[str] - Unique identifiers of the interface endpoints in your VPC that you added to the AWS PrivateLink connection. AZURE:
- private_
endpoints Sequence[str] - All private endpoints that you have added to this Azure Private Link Service.
- private_
link_ strid - Unique identifier of the AWS PrivateLink connection.
- private_
link_ strservice_ name - Name of the Azure Private Link Service that Atlas manages. GCP:
- private_
link_ strservice_ resource_ id - project_
id str - Required Unique identifier for the project.
- provider_
name str - Name of the cloud provider for which you want to create the private endpoint service. Atlas accepts
AWS
,AZURE
orGCP
. - region str
- Cloud provider region in which you want to create the private endpoint connection. Accepted values are: AWS regions, AZURE regions and GCP regions
- region_
name str - GCP region for the Private Service Connect endpoint service.
- service_
attachment_ Sequence[str]names - Unique alphanumeric and special character strings that identify the service attachments associated with the GCP Private Service Connect endpoint service. Returns an empty list while Atlas creates the service attachments.
- status str
- Status of the AWS PrivateLink connection or Status of the Azure Private Link Service. Atlas returns one of the following values:
AWS:
AVAILABLE
Atlas is creating the network load balancer and VPC endpoint service.WAITING_FOR_USER
The Atlas network load balancer and VPC endpoint service are created and ready to receive connection requests. When you receive this status, create an interface endpoint to continue configuring the AWS PrivateLink connection.FAILED
A system failure has occurred.DELETING
The AWS PrivateLink connection is being deleted. AZURE:AVAILABLE
Atlas created the load balancer and the Private Link Service.INITIATING
Atlas is creating the load balancer and the Private Link Service.FAILED
Atlas failed to create the load balancer and the Private Link service.DELETING
Atlas is deleting the Private Link service. GCP:AVAILABLE
Atlas created the load balancer and the GCP Private Service Connect service.INITIATING
Atlas is creating the load balancer and the GCP Private Service Connect service.FAILED
Atlas failed to create the load balancer and the GCP Private Service Connect service.DELETING
Atlas is deleting the GCP Private Service Connect service.
- endpoint
Group List<String>Names - GCP network endpoint groups corresponding to the Private Service Connect endpoint service.
- endpoint
Service StringName - Name of the PrivateLink endpoint service in AWS. Returns null while the endpoint service is being created.
- error
Message String - Error message pertaining to the AWS PrivateLink connection. Returns null if there are no errors. AWS:
- interface
Endpoints List<String> - Unique identifiers of the interface endpoints in your VPC that you added to the AWS PrivateLink connection. AZURE:
- private
Endpoints List<String> - All private endpoints that you have added to this Azure Private Link Service.
- private
Link StringId - Unique identifier of the AWS PrivateLink connection.
- private
Link StringService Name - Name of the Azure Private Link Service that Atlas manages. GCP:
- private
Link StringService Resource Id - project
Id String - Required Unique identifier for the project.
- provider
Name String - Name of the cloud provider for which you want to create the private endpoint service. Atlas accepts
AWS
,AZURE
orGCP
. - region String
- Cloud provider region in which you want to create the private endpoint connection. Accepted values are: AWS regions, AZURE regions and GCP regions
- region
Name String - GCP region for the Private Service Connect endpoint service.
- service
Attachment List<String>Names - Unique alphanumeric and special character strings that identify the service attachments associated with the GCP Private Service Connect endpoint service. Returns an empty list while Atlas creates the service attachments.
- status String
- Status of the AWS PrivateLink connection or Status of the Azure Private Link Service. Atlas returns one of the following values:
AWS:
AVAILABLE
Atlas is creating the network load balancer and VPC endpoint service.WAITING_FOR_USER
The Atlas network load balancer and VPC endpoint service are created and ready to receive connection requests. When you receive this status, create an interface endpoint to continue configuring the AWS PrivateLink connection.FAILED
A system failure has occurred.DELETING
The AWS PrivateLink connection is being deleted. AZURE:AVAILABLE
Atlas created the load balancer and the Private Link Service.INITIATING
Atlas is creating the load balancer and the Private Link Service.FAILED
Atlas failed to create the load balancer and the Private Link service.DELETING
Atlas is deleting the Private Link service. GCP:AVAILABLE
Atlas created the load balancer and the GCP Private Service Connect service.INITIATING
Atlas is creating the load balancer and the GCP Private Service Connect service.FAILED
Atlas failed to create the load balancer and the GCP Private Service Connect service.DELETING
Atlas is deleting the GCP Private Service Connect service.
Import
Private Endpoint Service can be imported using project ID, private link ID, provider name and region, in the format {project_id}-{private_link_id}-{provider_name}-{region}
, e.g.
$ pulumi import mongodbatlas:index/privateLinkEndpoint:PrivateLinkEndpoint test 1112222b3bf99403840e8934-3242342343112-AWS-us-east-1
See detailed information for arguments and attributes: MongoDB API Private Endpoint Service
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
mongodbatlas
Terraform Provider.