confluentcloud.PrivateLinkAttachmentConnection
Explore with Pulumi AI
confluentcloud.PrivateLinkAttachmentConnection
provides a Private Link Attachment Connection resource that enables creating, editing, and deleting Private Link Attachment Connections on Confluent Cloud.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as confluentcloud from "@pulumi/confluentcloud";
const aws = new confluentcloud.PrivateLinkAttachmentConnection("aws", {
displayName: "my_endpoint",
environment: {
id: "env-8gv0v5",
},
aws: {
vpcEndpointId: "vpce-0ed4d51f5d6ef9b6d",
},
privateLinkAttachment: {
id: "platt-plyvyl",
},
});
const azure = new confluentcloud.PrivateLinkAttachmentConnection("azure", {
displayName: "prod-azure-central-us-az1-connection",
environment: {
id: "env-12345",
},
azure: {
privateEndpointResourceId: "/subscriptions/123aaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa/resourceGroups/testvpc/providers/Microsoft.Network/privateEndpoints/pe-platt-abcdef-az1",
},
privateLinkAttachment: {
id: "platt-abcdef",
},
});
export const privateLinkAttachmentConnection = aws;
import pulumi
import pulumi_confluentcloud as confluentcloud
aws = confluentcloud.PrivateLinkAttachmentConnection("aws",
display_name="my_endpoint",
environment={
"id": "env-8gv0v5",
},
aws={
"vpc_endpoint_id": "vpce-0ed4d51f5d6ef9b6d",
},
private_link_attachment={
"id": "platt-plyvyl",
})
azure = confluentcloud.PrivateLinkAttachmentConnection("azure",
display_name="prod-azure-central-us-az1-connection",
environment={
"id": "env-12345",
},
azure={
"private_endpoint_resource_id": "/subscriptions/123aaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa/resourceGroups/testvpc/providers/Microsoft.Network/privateEndpoints/pe-platt-abcdef-az1",
},
private_link_attachment={
"id": "platt-abcdef",
})
pulumi.export("privateLinkAttachmentConnection", aws)
package main
import (
"github.com/pulumi/pulumi-confluentcloud/sdk/v2/go/confluentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
aws, err := confluentcloud.NewPrivateLinkAttachmentConnection(ctx, "aws", &confluentcloud.PrivateLinkAttachmentConnectionArgs{
DisplayName: pulumi.String("my_endpoint"),
Environment: &confluentcloud.PrivateLinkAttachmentConnectionEnvironmentArgs{
Id: pulumi.String("env-8gv0v5"),
},
Aws: &confluentcloud.PrivateLinkAttachmentConnectionAwsArgs{
VpcEndpointId: pulumi.String("vpce-0ed4d51f5d6ef9b6d"),
},
PrivateLinkAttachment: &confluentcloud.PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs{
Id: pulumi.String("platt-plyvyl"),
},
})
if err != nil {
return err
}
_, err = confluentcloud.NewPrivateLinkAttachmentConnection(ctx, "azure", &confluentcloud.PrivateLinkAttachmentConnectionArgs{
DisplayName: pulumi.String("prod-azure-central-us-az1-connection"),
Environment: &confluentcloud.PrivateLinkAttachmentConnectionEnvironmentArgs{
Id: pulumi.String("env-12345"),
},
Azure: &confluentcloud.PrivateLinkAttachmentConnectionAzureArgs{
PrivateEndpointResourceId: pulumi.String("/subscriptions/123aaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa/resourceGroups/testvpc/providers/Microsoft.Network/privateEndpoints/pe-platt-abcdef-az1"),
},
PrivateLinkAttachment: &confluentcloud.PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs{
Id: pulumi.String("platt-abcdef"),
},
})
if err != nil {
return err
}
ctx.Export("privateLinkAttachmentConnection", aws)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using ConfluentCloud = Pulumi.ConfluentCloud;
return await Deployment.RunAsync(() =>
{
var aws = new ConfluentCloud.PrivateLinkAttachmentConnection("aws", new()
{
DisplayName = "my_endpoint",
Environment = new ConfluentCloud.Inputs.PrivateLinkAttachmentConnectionEnvironmentArgs
{
Id = "env-8gv0v5",
},
Aws = new ConfluentCloud.Inputs.PrivateLinkAttachmentConnectionAwsArgs
{
VpcEndpointId = "vpce-0ed4d51f5d6ef9b6d",
},
PrivateLinkAttachment = new ConfluentCloud.Inputs.PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs
{
Id = "platt-plyvyl",
},
});
var azure = new ConfluentCloud.PrivateLinkAttachmentConnection("azure", new()
{
DisplayName = "prod-azure-central-us-az1-connection",
Environment = new ConfluentCloud.Inputs.PrivateLinkAttachmentConnectionEnvironmentArgs
{
Id = "env-12345",
},
Azure = new ConfluentCloud.Inputs.PrivateLinkAttachmentConnectionAzureArgs
{
PrivateEndpointResourceId = "/subscriptions/123aaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa/resourceGroups/testvpc/providers/Microsoft.Network/privateEndpoints/pe-platt-abcdef-az1",
},
PrivateLinkAttachment = new ConfluentCloud.Inputs.PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs
{
Id = "platt-abcdef",
},
});
return new Dictionary<string, object?>
{
["privateLinkAttachmentConnection"] = aws,
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.confluentcloud.PrivateLinkAttachmentConnection;
import com.pulumi.confluentcloud.PrivateLinkAttachmentConnectionArgs;
import com.pulumi.confluentcloud.inputs.PrivateLinkAttachmentConnectionEnvironmentArgs;
import com.pulumi.confluentcloud.inputs.PrivateLinkAttachmentConnectionAwsArgs;
import com.pulumi.confluentcloud.inputs.PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs;
import com.pulumi.confluentcloud.inputs.PrivateLinkAttachmentConnectionAzureArgs;
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 aws = new PrivateLinkAttachmentConnection("aws", PrivateLinkAttachmentConnectionArgs.builder()
.displayName("my_endpoint")
.environment(PrivateLinkAttachmentConnectionEnvironmentArgs.builder()
.id("env-8gv0v5")
.build())
.aws(PrivateLinkAttachmentConnectionAwsArgs.builder()
.vpcEndpointId("vpce-0ed4d51f5d6ef9b6d")
.build())
.privateLinkAttachment(PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs.builder()
.id("platt-plyvyl")
.build())
.build());
var azure = new PrivateLinkAttachmentConnection("azure", PrivateLinkAttachmentConnectionArgs.builder()
.displayName("prod-azure-central-us-az1-connection")
.environment(PrivateLinkAttachmentConnectionEnvironmentArgs.builder()
.id("env-12345")
.build())
.azure(PrivateLinkAttachmentConnectionAzureArgs.builder()
.privateEndpointResourceId("/subscriptions/123aaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa/resourceGroups/testvpc/providers/Microsoft.Network/privateEndpoints/pe-platt-abcdef-az1")
.build())
.privateLinkAttachment(PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs.builder()
.id("platt-abcdef")
.build())
.build());
ctx.export("privateLinkAttachmentConnection", aws);
}
}
resources:
aws:
type: confluentcloud:PrivateLinkAttachmentConnection
properties:
displayName: my_endpoint
environment:
id: env-8gv0v5
aws:
vpcEndpointId: vpce-0ed4d51f5d6ef9b6d
privateLinkAttachment:
id: platt-plyvyl
azure:
type: confluentcloud:PrivateLinkAttachmentConnection
properties:
displayName: prod-azure-central-us-az1-connection
environment:
id: env-12345
azure:
privateEndpointResourceId: /subscriptions/123aaaaa-aaaa-aaaa-aaaa-aaaaaaaaaaaa/resourceGroups/testvpc/providers/Microsoft.Network/privateEndpoints/pe-platt-abcdef-az1
privateLinkAttachment:
id: platt-abcdef
outputs:
privateLinkAttachmentConnection: ${aws}
Getting Started
The following end-to-end examples might help to get started with confluentcloud.PrivateLinkAttachmentConnection
resource:
enterprise-privatelinkattachment-aws-kafka-acls
: Enterprise Kafka cluster on AWS that is accessible via PrivateLink connections with authorization using ACLsenterprise-privatelinkattachment-azure-kafka-acls
: Enterprise Kafka cluster on Azure that is accessible via PrivateLink connections with authorization using ACLs
Create PrivateLinkAttachmentConnection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PrivateLinkAttachmentConnection(name: string, args: PrivateLinkAttachmentConnectionArgs, opts?: CustomResourceOptions);
@overload
def PrivateLinkAttachmentConnection(resource_name: str,
args: PrivateLinkAttachmentConnectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def PrivateLinkAttachmentConnection(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
environment: Optional[PrivateLinkAttachmentConnectionEnvironmentArgs] = None,
private_link_attachment: Optional[PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs] = None,
aws: Optional[PrivateLinkAttachmentConnectionAwsArgs] = None,
azure: Optional[PrivateLinkAttachmentConnectionAzureArgs] = None,
gcp: Optional[PrivateLinkAttachmentConnectionGcpArgs] = None)
func NewPrivateLinkAttachmentConnection(ctx *Context, name string, args PrivateLinkAttachmentConnectionArgs, opts ...ResourceOption) (*PrivateLinkAttachmentConnection, error)
public PrivateLinkAttachmentConnection(string name, PrivateLinkAttachmentConnectionArgs args, CustomResourceOptions? opts = null)
public PrivateLinkAttachmentConnection(String name, PrivateLinkAttachmentConnectionArgs args)
public PrivateLinkAttachmentConnection(String name, PrivateLinkAttachmentConnectionArgs args, CustomResourceOptions options)
type: confluentcloud:PrivateLinkAttachmentConnection
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 PrivateLinkAttachmentConnectionArgs
- 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 PrivateLinkAttachmentConnectionArgs
- 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 PrivateLinkAttachmentConnectionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PrivateLinkAttachmentConnectionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PrivateLinkAttachmentConnectionArgs
- 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 privateLinkAttachmentConnectionResource = new ConfluentCloud.PrivateLinkAttachmentConnection("privateLinkAttachmentConnectionResource", new()
{
DisplayName = "string",
Environment = new ConfluentCloud.Inputs.PrivateLinkAttachmentConnectionEnvironmentArgs
{
Id = "string",
},
PrivateLinkAttachment = new ConfluentCloud.Inputs.PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs
{
Id = "string",
},
Aws = new ConfluentCloud.Inputs.PrivateLinkAttachmentConnectionAwsArgs
{
VpcEndpointId = "string",
},
Azure = new ConfluentCloud.Inputs.PrivateLinkAttachmentConnectionAzureArgs
{
PrivateEndpointResourceId = "string",
},
Gcp = new ConfluentCloud.Inputs.PrivateLinkAttachmentConnectionGcpArgs
{
PrivateServiceConnectConnectionId = "string",
},
});
example, err := confluentcloud.NewPrivateLinkAttachmentConnection(ctx, "privateLinkAttachmentConnectionResource", &confluentcloud.PrivateLinkAttachmentConnectionArgs{
DisplayName: pulumi.String("string"),
Environment: &confluentcloud.PrivateLinkAttachmentConnectionEnvironmentArgs{
Id: pulumi.String("string"),
},
PrivateLinkAttachment: &confluentcloud.PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs{
Id: pulumi.String("string"),
},
Aws: &confluentcloud.PrivateLinkAttachmentConnectionAwsArgs{
VpcEndpointId: pulumi.String("string"),
},
Azure: &confluentcloud.PrivateLinkAttachmentConnectionAzureArgs{
PrivateEndpointResourceId: pulumi.String("string"),
},
Gcp: &confluentcloud.PrivateLinkAttachmentConnectionGcpArgs{
PrivateServiceConnectConnectionId: pulumi.String("string"),
},
})
var privateLinkAttachmentConnectionResource = new PrivateLinkAttachmentConnection("privateLinkAttachmentConnectionResource", PrivateLinkAttachmentConnectionArgs.builder()
.displayName("string")
.environment(PrivateLinkAttachmentConnectionEnvironmentArgs.builder()
.id("string")
.build())
.privateLinkAttachment(PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs.builder()
.id("string")
.build())
.aws(PrivateLinkAttachmentConnectionAwsArgs.builder()
.vpcEndpointId("string")
.build())
.azure(PrivateLinkAttachmentConnectionAzureArgs.builder()
.privateEndpointResourceId("string")
.build())
.gcp(PrivateLinkAttachmentConnectionGcpArgs.builder()
.privateServiceConnectConnectionId("string")
.build())
.build());
private_link_attachment_connection_resource = confluentcloud.PrivateLinkAttachmentConnection("privateLinkAttachmentConnectionResource",
display_name="string",
environment=confluentcloud.PrivateLinkAttachmentConnectionEnvironmentArgs(
id="string",
),
private_link_attachment=confluentcloud.PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs(
id="string",
),
aws=confluentcloud.PrivateLinkAttachmentConnectionAwsArgs(
vpc_endpoint_id="string",
),
azure=confluentcloud.PrivateLinkAttachmentConnectionAzureArgs(
private_endpoint_resource_id="string",
),
gcp=confluentcloud.PrivateLinkAttachmentConnectionGcpArgs(
private_service_connect_connection_id="string",
))
const privateLinkAttachmentConnectionResource = new confluentcloud.PrivateLinkAttachmentConnection("privateLinkAttachmentConnectionResource", {
displayName: "string",
environment: {
id: "string",
},
privateLinkAttachment: {
id: "string",
},
aws: {
vpcEndpointId: "string",
},
azure: {
privateEndpointResourceId: "string",
},
gcp: {
privateServiceConnectConnectionId: "string",
},
});
type: confluentcloud:PrivateLinkAttachmentConnection
properties:
aws:
vpcEndpointId: string
azure:
privateEndpointResourceId: string
displayName: string
environment:
id: string
gcp:
privateServiceConnectConnectionId: string
privateLinkAttachment:
id: string
PrivateLinkAttachmentConnection 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 PrivateLinkAttachmentConnection resource accepts the following input properties:
- Display
Name string - The name of the Private Link Attachment Connection.
- Environment
Pulumi.
Confluent Cloud. Inputs. Private Link Attachment Connection Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Private
Link Pulumi.Attachment Confluent Cloud. Inputs. Private Link Attachment Connection Private Link Attachment - The private_link_attachment to which this belongs.
- Aws
Pulumi.
Confluent Cloud. Inputs. Private Link Attachment Connection Aws - Azure
Pulumi.
Confluent Cloud. Inputs. Private Link Attachment Connection Azure - Gcp
Pulumi.
Confluent Cloud. Inputs. Private Link Attachment Connection Gcp
- Display
Name string - The name of the Private Link Attachment Connection.
- Environment
Private
Link Attachment Connection Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Private
Link PrivateAttachment Link Attachment Connection Private Link Attachment Args - The private_link_attachment to which this belongs.
- Aws
Private
Link Attachment Connection Aws Args - Azure
Private
Link Attachment Connection Azure Args - Gcp
Private
Link Attachment Connection Gcp Args
- display
Name String - The name of the Private Link Attachment Connection.
- environment
Private
Link Attachment Connection Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- private
Link PrivateAttachment Link Attachment Connection Private Link Attachment - The private_link_attachment to which this belongs.
- aws
Private
Link Attachment Connection Aws - azure
Private
Link Attachment Connection Azure - gcp
Private
Link Attachment Connection Gcp
- display
Name string - The name of the Private Link Attachment Connection.
- environment
Private
Link Attachment Connection Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- private
Link PrivateAttachment Link Attachment Connection Private Link Attachment - The private_link_attachment to which this belongs.
- aws
Private
Link Attachment Connection Aws - azure
Private
Link Attachment Connection Azure - gcp
Private
Link Attachment Connection Gcp
- display_
name str - The name of the Private Link Attachment Connection.
- environment
Private
Link Attachment Connection Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- private_
link_ Privateattachment Link Attachment Connection Private Link Attachment Args - The private_link_attachment to which this belongs.
- aws
Private
Link Attachment Connection Aws Args - azure
Private
Link Attachment Connection Azure Args - gcp
Private
Link Attachment Connection Gcp Args
- display
Name String - The name of the Private Link Attachment Connection.
- environment Property Map
- Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- private
Link Property MapAttachment - The private_link_attachment to which this belongs.
- aws Property Map
- azure Property Map
- gcp Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the PrivateLinkAttachmentConnection resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Name string - (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w
.
- Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Name string - (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w
.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Name String - (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w
.
- id string
- The provider-assigned unique ID for this managed resource.
- resource
Name string - (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w
.
- id str
- The provider-assigned unique ID for this managed resource.
- resource_
name str - (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w
.
- id String
- The provider-assigned unique ID for this managed resource.
- resource
Name String - (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w
.
Look up Existing PrivateLinkAttachmentConnection Resource
Get an existing PrivateLinkAttachmentConnection 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?: PrivateLinkAttachmentConnectionState, opts?: CustomResourceOptions): PrivateLinkAttachmentConnection
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aws: Optional[PrivateLinkAttachmentConnectionAwsArgs] = None,
azure: Optional[PrivateLinkAttachmentConnectionAzureArgs] = None,
display_name: Optional[str] = None,
environment: Optional[PrivateLinkAttachmentConnectionEnvironmentArgs] = None,
gcp: Optional[PrivateLinkAttachmentConnectionGcpArgs] = None,
private_link_attachment: Optional[PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs] = None,
resource_name: Optional[str] = None) -> PrivateLinkAttachmentConnection
func GetPrivateLinkAttachmentConnection(ctx *Context, name string, id IDInput, state *PrivateLinkAttachmentConnectionState, opts ...ResourceOption) (*PrivateLinkAttachmentConnection, error)
public static PrivateLinkAttachmentConnection Get(string name, Input<string> id, PrivateLinkAttachmentConnectionState? state, CustomResourceOptions? opts = null)
public static PrivateLinkAttachmentConnection get(String name, Output<String> id, PrivateLinkAttachmentConnectionState 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.
- Aws
Pulumi.
Confluent Cloud. Inputs. Private Link Attachment Connection Aws - Azure
Pulumi.
Confluent Cloud. Inputs. Private Link Attachment Connection Azure - Display
Name string - The name of the Private Link Attachment Connection.
- Environment
Pulumi.
Confluent Cloud. Inputs. Private Link Attachment Connection Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Gcp
Pulumi.
Confluent Cloud. Inputs. Private Link Attachment Connection Gcp - Private
Link Pulumi.Attachment Confluent Cloud. Inputs. Private Link Attachment Connection Private Link Attachment - The private_link_attachment to which this belongs.
- Resource
Name string - (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w
.
- Aws
Private
Link Attachment Connection Aws Args - Azure
Private
Link Attachment Connection Azure Args - Display
Name string - The name of the Private Link Attachment Connection.
- Environment
Private
Link Attachment Connection Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Gcp
Private
Link Attachment Connection Gcp Args - Private
Link PrivateAttachment Link Attachment Connection Private Link Attachment Args - The private_link_attachment to which this belongs.
- Resource
Name string - (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w
.
- aws
Private
Link Attachment Connection Aws - azure
Private
Link Attachment Connection Azure - display
Name String - The name of the Private Link Attachment Connection.
- environment
Private
Link Attachment Connection Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- gcp
Private
Link Attachment Connection Gcp - private
Link PrivateAttachment Link Attachment Connection Private Link Attachment - The private_link_attachment to which this belongs.
- resource
Name String - (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w
.
- aws
Private
Link Attachment Connection Aws - azure
Private
Link Attachment Connection Azure - display
Name string - The name of the Private Link Attachment Connection.
- environment
Private
Link Attachment Connection Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- gcp
Private
Link Attachment Connection Gcp - private
Link PrivateAttachment Link Attachment Connection Private Link Attachment - The private_link_attachment to which this belongs.
- resource
Name string - (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w
.
- aws
Private
Link Attachment Connection Aws Args - azure
Private
Link Attachment Connection Azure Args - display_
name str - The name of the Private Link Attachment Connection.
- environment
Private
Link Attachment Connection Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- gcp
Private
Link Attachment Connection Gcp Args - private_
link_ Privateattachment Link Attachment Connection Private Link Attachment Args - The private_link_attachment to which this belongs.
- resource_
name str - (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w
.
- aws Property Map
- azure Property Map
- display
Name String - The name of the Private Link Attachment Connection.
- environment Property Map
- Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- gcp Property Map
- private
Link Property MapAttachment - The private_link_attachment to which this belongs.
- resource
Name String - (Required String) The Confluent Resource Name of the Private Link Attachment Connection, for example
crn://confluent.cloud/organization=1111aaaa-11aa-11aa-11aa-111111aaaaaa/environment=env-75gxp2/private-link-attachment=platt-1q0ky0/private-link-attachment-connection=plattc-77zq2w
.
Supporting Types
PrivateLinkAttachmentConnectionAws, PrivateLinkAttachmentConnectionAwsArgs
- Vpc
Endpoint stringId - Id of a VPC Endpoint that is connected to the VPC Endpoint service.
- Vpc
Endpoint stringId - Id of a VPC Endpoint that is connected to the VPC Endpoint service.
- vpc
Endpoint StringId - Id of a VPC Endpoint that is connected to the VPC Endpoint service.
- vpc
Endpoint stringId - Id of a VPC Endpoint that is connected to the VPC Endpoint service.
- vpc_
endpoint_ strid - Id of a VPC Endpoint that is connected to the VPC Endpoint service.
- vpc
Endpoint StringId - Id of a VPC Endpoint that is connected to the VPC Endpoint service.
PrivateLinkAttachmentConnectionAzure, PrivateLinkAttachmentConnectionAzureArgs
- Private
Endpoint stringResource Id - Resource ID of the Private Endpoint that is connected to the Private Link service.
- Private
Endpoint stringResource Id - Resource ID of the Private Endpoint that is connected to the Private Link service.
- private
Endpoint StringResource Id - Resource ID of the Private Endpoint that is connected to the Private Link service.
- private
Endpoint stringResource Id - Resource ID of the Private Endpoint that is connected to the Private Link service.
- private_
endpoint_ strresource_ id - Resource ID of the Private Endpoint that is connected to the Private Link service.
- private
Endpoint StringResource Id - Resource ID of the Private Endpoint that is connected to the Private Link service.
PrivateLinkAttachmentConnectionEnvironment, PrivateLinkAttachmentConnectionEnvironmentArgs
- Id string
- The ID of the Environment that the Private Link Attachment Connection belongs to, for example
env-xyz456
.
- Id string
- The ID of the Environment that the Private Link Attachment Connection belongs to, for example
env-xyz456
.
- id String
- The ID of the Environment that the Private Link Attachment Connection belongs to, for example
env-xyz456
.
- id string
- The ID of the Environment that the Private Link Attachment Connection belongs to, for example
env-xyz456
.
- id str
- The ID of the Environment that the Private Link Attachment Connection belongs to, for example
env-xyz456
.
- id String
- The ID of the Environment that the Private Link Attachment Connection belongs to, for example
env-xyz456
.
PrivateLinkAttachmentConnectionGcp, PrivateLinkAttachmentConnectionGcpArgs
- Private
Service stringConnect Connection Id - Id of the Private Service connection.
- Private
Service stringConnect Connection Id - Id of the Private Service connection.
- private
Service StringConnect Connection Id - Id of the Private Service connection.
- private
Service stringConnect Connection Id - Id of the Private Service connection.
- private_
service_ strconnect_ connection_ id - Id of the Private Service connection.
- private
Service StringConnect Connection Id - Id of the Private Service connection.
PrivateLinkAttachmentConnectionPrivateLinkAttachment, PrivateLinkAttachmentConnectionPrivateLinkAttachmentArgs
- Id string
- The unique identifier for the private link attachment.
- Id string
- The unique identifier for the private link attachment.
- id String
- The unique identifier for the private link attachment.
- id string
- The unique identifier for the private link attachment.
- id str
- The unique identifier for the private link attachment.
- id String
- The unique identifier for the private link attachment.
Import
You can import a Private Link Attachment Connection by using Environment ID and Private Link Attachment Connection ID, in the format <Environment ID>/<Private Link Attachment Connection ID>
. The following example shows how to import a Private Link Attachment Connection:
$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>"
$ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
$ pulumi import confluentcloud:index/privateLinkAttachmentConnection:PrivateLinkAttachmentConnection main env-abc123/plattc-abc123
!> Warning: Do not forget to delete terminal command history afterwards for security purposes.
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Confluent Cloud pulumi/pulumi-confluentcloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
confluent
Terraform Provider.