Confluent Cloud
getPeering
confluentcloud.Peering
describes a Peering data source.
Example Usage
using Pulumi;
using ConfluentCloud = Pulumi.ConfluentCloud;
class MyStack : Stack
{
public MyStack()
{
var exampleUsingIdPeering = Output.Create(ConfluentCloud.GetPeering.InvokeAsync(new ConfluentCloud.GetPeeringArgs
{
Id = "peer-abc123",
Environment = new ConfluentCloud.Inputs.GetPeeringEnvironmentArgs
{
Id = "env-xyz456",
},
}));
this.ExampleUsingId = exampleUsingIdPeering;
var exampleUsingNamePeering = Output.Create(ConfluentCloud.GetPeering.InvokeAsync(new ConfluentCloud.GetPeeringArgs
{
DisplayName = "my_peering",
Environment = new ConfluentCloud.Inputs.GetPeeringEnvironmentArgs
{
Id = "env-xyz456",
},
}));
this.ExampleUsingName = exampleUsingNamePeering;
}
[Output("exampleUsingId")]
public Output<string> ExampleUsingId { get; set; }
[Output("exampleUsingName")]
public Output<string> ExampleUsingName { get; set; }
}
package main
import (
"github.com/pulumi/pulumi-confluentcloud/sdk/go/confluentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleUsingIdPeering, err := confluentcloud.LookupPeering(ctx, &GetPeeringArgs{
Id: pulumi.StringRef("peer-abc123"),
Environment: GetPeeringEnvironment{
Id: "env-xyz456",
},
}, nil)
if err != nil {
return err
}
ctx.Export("exampleUsingId", exampleUsingIdPeering)
exampleUsingNamePeering, err := confluentcloud.LookupPeering(ctx, &GetPeeringArgs{
DisplayName: pulumi.StringRef("my_peering"),
Environment: GetPeeringEnvironment{
Id: "env-xyz456",
},
}, nil)
if err != nil {
return err
}
ctx.Export("exampleUsingName", exampleUsingNamePeering)
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.confluentcloud.ConfluentcloudFunctions;
import com.pulumi.confluentcloud.inputs.GetPeeringArgs;
import com.pulumi.confluentcloud.inputs.GetPeeringEnvironmentArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var exampleUsingIdPeering = ConfluentcloudFunctions.getPeering(GetPeeringArgs.builder()
.id("peer-abc123")
.environment(GetPeeringEnvironmentArgs.builder()
.id("env-xyz456")
.build())
.build());
ctx.export("exampleUsingId", exampleUsingIdPeering.applyValue(getPeeringResult -> getPeeringResult));
final var exampleUsingNamePeering = ConfluentcloudFunctions.getPeering(GetPeeringArgs.builder()
.displayName("my_peering")
.environment(GetPeeringEnvironmentArgs.builder()
.id("env-xyz456")
.build())
.build());
ctx.export("exampleUsingName", exampleUsingNamePeering.applyValue(getPeeringResult -> getPeeringResult));
}
}
import pulumi
import pulumi_confluentcloud as confluentcloud
example_using_id_peering = confluentcloud.get_peering(id="peer-abc123",
environment=confluentcloud.GetPeeringEnvironmentArgs(
id="env-xyz456",
))
pulumi.export("exampleUsingId", example_using_id_peering)
example_using_name_peering = confluentcloud.get_peering(display_name="my_peering",
environment=confluentcloud.GetPeeringEnvironmentArgs(
id="env-xyz456",
))
pulumi.export("exampleUsingName", example_using_name_peering)
import * as pulumi from "@pulumi/pulumi";
import * as confluentcloud from "@pulumi/confluentcloud";
const exampleUsingIdPeering = confluentcloud.getPeering({
id: "peer-abc123",
environment: {
id: "env-xyz456",
},
});
export const exampleUsingId = exampleUsingIdPeering;
const exampleUsingNamePeering = confluentcloud.getPeering({
displayName: "my_peering",
environment: {
id: "env-xyz456",
},
});
export const exampleUsingName = exampleUsingNamePeering;
variables:
exampleUsingIdPeering:
Fn::Invoke:
Function: confluentcloud:getPeering
Arguments:
id: peer-abc123
environment:
id: env-xyz456
exampleUsingNamePeering:
Fn::Invoke:
Function: confluentcloud:getPeering
Arguments:
displayName: my_peering
environment:
id: env-xyz456
outputs:
exampleUsingId: ${exampleUsingIdPeering}
exampleUsingName: ${exampleUsingNamePeering}
Using getPeering
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getPeering(args: GetPeeringArgs, opts?: InvokeOptions): Promise<GetPeeringResult>
function getPeeringOutput(args: GetPeeringOutputArgs, opts?: InvokeOptions): Output<GetPeeringResult>
def get_peering(display_name: Optional[str] = None,
environment: Optional[GetPeeringEnvironment] = None,
id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetPeeringResult
def get_peering_output(display_name: Optional[pulumi.Input[str]] = None,
environment: Optional[pulumi.Input[GetPeeringEnvironmentArgs]] = None,
id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetPeeringResult]
func LookupPeering(ctx *Context, args *LookupPeeringArgs, opts ...InvokeOption) (*LookupPeeringResult, error)
func LookupPeeringOutput(ctx *Context, args *LookupPeeringOutputArgs, opts ...InvokeOption) LookupPeeringResultOutput
> Note: This function is named LookupPeering
in the Go SDK.
public static class GetPeering
{
public static Task<GetPeeringResult> InvokeAsync(GetPeeringArgs args, InvokeOptions? opts = null)
public static Output<GetPeeringResult> Invoke(GetPeeringInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetPeeringResult> getPeering(GetPeeringArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
Fn::Invoke:
Function: confluentcloud:index/getPeering:getPeering
Arguments:
# Arguments dictionary
The following arguments are supported:
- Environment
Pulumi.
Confluent Cloud. Inputs. Get Peering Environment - Display
Name string A human-readable name for the Peering.
- Id string
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- Environment
Get
Peering Environment - Display
Name string A human-readable name for the Peering.
- Id string
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- environment
Get
Peering Environment - display
Name String A human-readable name for the Peering.
- id String
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- environment
Get
Peering Environment - display
Name string A human-readable name for the Peering.
- id string
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- environment
Get
Peering Environment - display_
name str A human-readable name for the Peering.
- id str
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- environment Property Map
- display
Name String A human-readable name for the Peering.
- id String
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
getPeering Result
The following output properties are available:
- Aws
List<Pulumi.
Confluent Cloud. Outputs. Get Peering Aw> (Optional Configuration Block) The AWS-specific Peering details if available. It supports the following:
- Azures
List<Pulumi.
Confluent Cloud. Outputs. Get Peering Azure> (Optional Configuration Block) The Azure-specific Peering details if available. It supports the following:
- Display
Name string (Optional String) The name of the Peering.
environment
(Required Configuration Block) supports the following:
- Environment
Pulumi.
Confluent Cloud. Outputs. Get Peering Environment - Gcps
List<Pulumi.
Confluent Cloud. Outputs. Get Peering Gcp> (Optional Configuration Block) The Azure-specific Peering details if available. It supports the following:
- Id string
(Required String) The ID of the Network that the Peering belongs to, for example,
n-abc123
.- Networks
List<Pulumi.
Confluent Cloud. Outputs. Get Peering Network>
- Aws
[]Get
Peering Aw (Optional Configuration Block) The AWS-specific Peering details if available. It supports the following:
- Azures
[]Get
Peering Azure (Optional Configuration Block) The Azure-specific Peering details if available. It supports the following:
- Display
Name string (Optional String) The name of the Peering.
environment
(Required Configuration Block) supports the following:
- Environment
Get
Peering Environment - Gcps
[]Get
Peering Gcp (Optional Configuration Block) The Azure-specific Peering details if available. It supports the following:
- Id string
(Required String) The ID of the Network that the Peering belongs to, for example,
n-abc123
.- Networks
[]Get
Peering Network
- aws
List<Get
Peering Aw> (Optional Configuration Block) The AWS-specific Peering details if available. It supports the following:
- azures
List<Get
Peering Azure> (Optional Configuration Block) The Azure-specific Peering details if available. It supports the following:
- display
Name String (Optional String) The name of the Peering.
environment
(Required Configuration Block) supports the following:
- environment
Get
Peering Environment - gcps
List<Get
Peering Gcp> (Optional Configuration Block) The Azure-specific Peering details if available. It supports the following:
- id String
(Required String) The ID of the Network that the Peering belongs to, for example,
n-abc123
.- networks
List<Get
Peering Network>
- aws
Get
Peering Aw[] (Optional Configuration Block) The AWS-specific Peering details if available. It supports the following:
- azures
Get
Peering Azure[] (Optional Configuration Block) The Azure-specific Peering details if available. It supports the following:
- display
Name string (Optional String) The name of the Peering.
environment
(Required Configuration Block) supports the following:
- environment
Get
Peering Environment - gcps
Get
Peering Gcp[] (Optional Configuration Block) The Azure-specific Peering details if available. It supports the following:
- id string
(Required String) The ID of the Network that the Peering belongs to, for example,
n-abc123
.- networks
Get
Peering Network[]
- aws
Sequence[Get
Peering Aw] (Optional Configuration Block) The AWS-specific Peering details if available. It supports the following:
- azures
Sequence[Get
Peering Azure] (Optional Configuration Block) The Azure-specific Peering details if available. It supports the following:
- display_
name str (Optional String) The name of the Peering.
environment
(Required Configuration Block) supports the following:
- environment
Get
Peering Environment - gcps
Sequence[Get
Peering Gcp] (Optional Configuration Block) The Azure-specific Peering details if available. It supports the following:
- id str
(Required String) The ID of the Network that the Peering belongs to, for example,
n-abc123
.- networks
Sequence[Get
Peering Network]
- aws List<Property Map>
(Optional Configuration Block) The AWS-specific Peering details if available. It supports the following:
- azures List<Property Map>
(Optional Configuration Block) The Azure-specific Peering details if available. It supports the following:
- display
Name String (Optional String) The name of the Peering.
environment
(Required Configuration Block) supports the following:
- environment Property Map
- gcps List<Property Map>
(Optional Configuration Block) The Azure-specific Peering details if available. It supports the following:
- id String
(Required String) The ID of the Network that the Peering belongs to, for example,
n-abc123
.- networks List<Property Map>
Supporting Types
GetPeeringAw
- Account string
(Required String) The AWS Account ID of the peer VPC owner. You can find your AWS Account ID here under My Account section of the AWS Management Console. Must be a 12 character string.
- Customer
Region string (Required String) The region of the Azure peer VNet.
- Routes List<string>
(Required String) The AWS VPC CIDR blocks or subsets. This must be from the supported CIDR blocks and must not overlap with your Confluent Cloud CIDR block or any other network peering connection VPC CIDR (learn more about the requirements here). You can find AWS VPC CIDR here under Your VPCs > Target VPC > Details section of the AWS Management Console.
- Vpc string
(Required String) The AWS VPC ID of the peer VPC that you're peering with Confluent Cloud. You can find your AWS VPC ID here under Your VPCs section of the AWS Management Console. Must start with
vpc-
.
- Account string
(Required String) The AWS Account ID of the peer VPC owner. You can find your AWS Account ID here under My Account section of the AWS Management Console. Must be a 12 character string.
- Customer
Region string (Required String) The region of the Azure peer VNet.
- Routes []string
(Required String) The AWS VPC CIDR blocks or subsets. This must be from the supported CIDR blocks and must not overlap with your Confluent Cloud CIDR block or any other network peering connection VPC CIDR (learn more about the requirements here). You can find AWS VPC CIDR here under Your VPCs > Target VPC > Details section of the AWS Management Console.
- Vpc string
(Required String) The AWS VPC ID of the peer VPC that you're peering with Confluent Cloud. You can find your AWS VPC ID here under Your VPCs section of the AWS Management Console. Must start with
vpc-
.
- account String
(Required String) The AWS Account ID of the peer VPC owner. You can find your AWS Account ID here under My Account section of the AWS Management Console. Must be a 12 character string.
- customer
Region String (Required String) The region of the Azure peer VNet.
- routes List<String>
(Required String) The AWS VPC CIDR blocks or subsets. This must be from the supported CIDR blocks and must not overlap with your Confluent Cloud CIDR block or any other network peering connection VPC CIDR (learn more about the requirements here). You can find AWS VPC CIDR here under Your VPCs > Target VPC > Details section of the AWS Management Console.
- vpc String
(Required String) The AWS VPC ID of the peer VPC that you're peering with Confluent Cloud. You can find your AWS VPC ID here under Your VPCs section of the AWS Management Console. Must start with
vpc-
.
- account string
(Required String) The AWS Account ID of the peer VPC owner. You can find your AWS Account ID here under My Account section of the AWS Management Console. Must be a 12 character string.
- customer
Region string (Required String) The region of the Azure peer VNet.
- routes string[]
(Required String) The AWS VPC CIDR blocks or subsets. This must be from the supported CIDR blocks and must not overlap with your Confluent Cloud CIDR block or any other network peering connection VPC CIDR (learn more about the requirements here). You can find AWS VPC CIDR here under Your VPCs > Target VPC > Details section of the AWS Management Console.
- vpc string
(Required String) The AWS VPC ID of the peer VPC that you're peering with Confluent Cloud. You can find your AWS VPC ID here under Your VPCs section of the AWS Management Console. Must start with
vpc-
.
- account str
(Required String) The AWS Account ID of the peer VPC owner. You can find your AWS Account ID here under My Account section of the AWS Management Console. Must be a 12 character string.
- customer_
region str (Required String) The region of the Azure peer VNet.
- routes Sequence[str]
(Required String) The AWS VPC CIDR blocks or subsets. This must be from the supported CIDR blocks and must not overlap with your Confluent Cloud CIDR block or any other network peering connection VPC CIDR (learn more about the requirements here). You can find AWS VPC CIDR here under Your VPCs > Target VPC > Details section of the AWS Management Console.
- vpc str
(Required String) The AWS VPC ID of the peer VPC that you're peering with Confluent Cloud. You can find your AWS VPC ID here under Your VPCs section of the AWS Management Console. Must start with
vpc-
.
- account String
(Required String) The AWS Account ID of the peer VPC owner. You can find your AWS Account ID here under My Account section of the AWS Management Console. Must be a 12 character string.
- customer
Region String (Required String) The region of the Azure peer VNet.
- routes List<String>
(Required String) The AWS VPC CIDR blocks or subsets. This must be from the supported CIDR blocks and must not overlap with your Confluent Cloud CIDR block or any other network peering connection VPC CIDR (learn more about the requirements here). You can find AWS VPC CIDR here under Your VPCs > Target VPC > Details section of the AWS Management Console.
- vpc String
(Required String) The AWS VPC ID of the peer VPC that you're peering with Confluent Cloud. You can find your AWS VPC ID here under Your VPCs section of the AWS Management Console. Must start with
vpc-
.
GetPeeringAzure
- Customer
Region string (Required String) The region of the Azure peer VNet.
- Tenant string
(Required String) The Tenant ID that represents an organization in Azure Active Directory. You can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.
- Vnet string
(Required String) The resource (composite) ID of the peer Virtual Network that you're peering with Confluent Cloud, in the format
/subscriptions/<Subscription ID>/resourceGroups/<Resource Group Name>/providers/Microsoft.Network/virtualNetworks/<VNet name>
. You can find Subscription ID, Resource Group Name and your VNet name under Virtual Networks > Target VNet > Essentials section of your Microsoft Azure Portal.
- Customer
Region string (Required String) The region of the Azure peer VNet.
- Tenant string
(Required String) The Tenant ID that represents an organization in Azure Active Directory. You can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.
- Vnet string
(Required String) The resource (composite) ID of the peer Virtual Network that you're peering with Confluent Cloud, in the format
/subscriptions/<Subscription ID>/resourceGroups/<Resource Group Name>/providers/Microsoft.Network/virtualNetworks/<VNet name>
. You can find Subscription ID, Resource Group Name and your VNet name under Virtual Networks > Target VNet > Essentials section of your Microsoft Azure Portal.
- customer
Region String (Required String) The region of the Azure peer VNet.
- tenant String
(Required String) The Tenant ID that represents an organization in Azure Active Directory. You can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.
- vnet String
(Required String) The resource (composite) ID of the peer Virtual Network that you're peering with Confluent Cloud, in the format
/subscriptions/<Subscription ID>/resourceGroups/<Resource Group Name>/providers/Microsoft.Network/virtualNetworks/<VNet name>
. You can find Subscription ID, Resource Group Name and your VNet name under Virtual Networks > Target VNet > Essentials section of your Microsoft Azure Portal.
- customer
Region string (Required String) The region of the Azure peer VNet.
- tenant string
(Required String) The Tenant ID that represents an organization in Azure Active Directory. You can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.
- vnet string
(Required String) The resource (composite) ID of the peer Virtual Network that you're peering with Confluent Cloud, in the format
/subscriptions/<Subscription ID>/resourceGroups/<Resource Group Name>/providers/Microsoft.Network/virtualNetworks/<VNet name>
. You can find Subscription ID, Resource Group Name and your VNet name under Virtual Networks > Target VNet > Essentials section of your Microsoft Azure Portal.
- customer_
region str (Required String) The region of the Azure peer VNet.
- tenant str
(Required String) The Tenant ID that represents an organization in Azure Active Directory. You can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.
- vnet str
(Required String) The resource (composite) ID of the peer Virtual Network that you're peering with Confluent Cloud, in the format
/subscriptions/<Subscription ID>/resourceGroups/<Resource Group Name>/providers/Microsoft.Network/virtualNetworks/<VNet name>
. You can find Subscription ID, Resource Group Name and your VNet name under Virtual Networks > Target VNet > Essentials section of your Microsoft Azure Portal.
- customer
Region String (Required String) The region of the Azure peer VNet.
- tenant String
(Required String) The Tenant ID that represents an organization in Azure Active Directory. You can find your Azure Tenant ID in the Azure Portal under Azure Active Directory. Must be a valid 32 character UUID string.
- vnet String
(Required String) The resource (composite) ID of the peer Virtual Network that you're peering with Confluent Cloud, in the format
/subscriptions/<Subscription ID>/resourceGroups/<Resource Group Name>/providers/Microsoft.Network/virtualNetworks/<VNet name>
. You can find Subscription ID, Resource Group Name and your VNet name under Virtual Networks > Target VNet > Essentials section of your Microsoft Azure Portal.
GetPeeringEnvironment
- Id string
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- Id string
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- id String
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- id string
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- id str
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- id String
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
GetPeeringGcp
- Import
Custom boolRoutes (Optional Boolean) The Import Custom Routes option enables connectivity to a Confluent Cloud cluster in Google Cloud from customer premise or other clouds, such as AWS and Azure, through a customer VPC that is peered with Confluent Cloud in the same region. Defaults to
false
. Learn more about considerations / limitations of the Import Custom Routes option here.- Project string
(Required String) The GCP Project ID. You can find your Google Cloud Project ID under Project ID section of your Google Cloud Console dashboard.
- Vpc
Network string (Required String) The VPC network name that you're peering to Confluent Cloud. You can find your VPC network name under VPC Networks section of your Google Cloud Console.
- Import
Custom boolRoutes (Optional Boolean) The Import Custom Routes option enables connectivity to a Confluent Cloud cluster in Google Cloud from customer premise or other clouds, such as AWS and Azure, through a customer VPC that is peered with Confluent Cloud in the same region. Defaults to
false
. Learn more about considerations / limitations of the Import Custom Routes option here.- Project string
(Required String) The GCP Project ID. You can find your Google Cloud Project ID under Project ID section of your Google Cloud Console dashboard.
- Vpc
Network string (Required String) The VPC network name that you're peering to Confluent Cloud. You can find your VPC network name under VPC Networks section of your Google Cloud Console.
- import
Custom BooleanRoutes (Optional Boolean) The Import Custom Routes option enables connectivity to a Confluent Cloud cluster in Google Cloud from customer premise or other clouds, such as AWS and Azure, through a customer VPC that is peered with Confluent Cloud in the same region. Defaults to
false
. Learn more about considerations / limitations of the Import Custom Routes option here.- project String
(Required String) The GCP Project ID. You can find your Google Cloud Project ID under Project ID section of your Google Cloud Console dashboard.
- vpc
Network String (Required String) The VPC network name that you're peering to Confluent Cloud. You can find your VPC network name under VPC Networks section of your Google Cloud Console.
- import
Custom booleanRoutes (Optional Boolean) The Import Custom Routes option enables connectivity to a Confluent Cloud cluster in Google Cloud from customer premise or other clouds, such as AWS and Azure, through a customer VPC that is peered with Confluent Cloud in the same region. Defaults to
false
. Learn more about considerations / limitations of the Import Custom Routes option here.- project string
(Required String) The GCP Project ID. You can find your Google Cloud Project ID under Project ID section of your Google Cloud Console dashboard.
- vpc
Network string (Required String) The VPC network name that you're peering to Confluent Cloud. You can find your VPC network name under VPC Networks section of your Google Cloud Console.
- import_
custom_ boolroutes (Optional Boolean) The Import Custom Routes option enables connectivity to a Confluent Cloud cluster in Google Cloud from customer premise or other clouds, such as AWS and Azure, through a customer VPC that is peered with Confluent Cloud in the same region. Defaults to
false
. Learn more about considerations / limitations of the Import Custom Routes option here.- project str
(Required String) The GCP Project ID. You can find your Google Cloud Project ID under Project ID section of your Google Cloud Console dashboard.
- vpc_
network str (Required String) The VPC network name that you're peering to Confluent Cloud. You can find your VPC network name under VPC Networks section of your Google Cloud Console.
- import
Custom BooleanRoutes (Optional Boolean) The Import Custom Routes option enables connectivity to a Confluent Cloud cluster in Google Cloud from customer premise or other clouds, such as AWS and Azure, through a customer VPC that is peered with Confluent Cloud in the same region. Defaults to
false
. Learn more about considerations / limitations of the Import Custom Routes option here.- project String
(Required String) The GCP Project ID. You can find your Google Cloud Project ID under Project ID section of your Google Cloud Console dashboard.
- vpc
Network String (Required String) The VPC network name that you're peering to Confluent Cloud. You can find your VPC network name under VPC Networks section of your Google Cloud Console.
GetPeeringNetwork
- Id string
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- Id string
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- id String
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- id string
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- id str
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
- id String
The ID of the Environment that the Peering belongs to, for example,
env-xyz456
.
Package Details
- Repository
- https://github.com/pulumi/pulumi-confluentcloud
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
confluent
Terraform Provider.