published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
Import
You can import a Network by using Environment ID and Network ID, in the format <Environment ID>/<Network ID>. The following example shows how to import a Network$ export CONFLUENT_CLOUD_API_KEY="<cloud_api_key>" $ export CONFLUENT_CLOUD_API_SECRET="<cloud_api_secret>"
$ pulumi import confluentcloud:index/network:Network my_network env-abc123/n-abc123
!> Warning: Do not forget to delete terminal command history afterwards for security purposes.
Create Network Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Network(name: string, args: NetworkArgs, opts?: CustomResourceOptions);@overload
def Network(resource_name: str,
args: NetworkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Network(resource_name: str,
opts: Optional[ResourceOptions] = None,
cloud: Optional[str] = None,
connection_types: Optional[Sequence[str]] = None,
environment: Optional[NetworkEnvironmentArgs] = None,
region: Optional[str] = None,
aws: Optional[Sequence[NetworkAwArgs]] = None,
azures: Optional[Sequence[NetworkAzureArgs]] = None,
cidr: Optional[str] = None,
display_name: Optional[str] = None,
gcps: Optional[Sequence[NetworkGcpArgs]] = None,
zones: Optional[Sequence[str]] = None)func NewNetwork(ctx *Context, name string, args NetworkArgs, opts ...ResourceOption) (*Network, error)public Network(string name, NetworkArgs args, CustomResourceOptions? opts = null)
public Network(String name, NetworkArgs args)
public Network(String name, NetworkArgs args, CustomResourceOptions options)
type: confluentcloud:Network
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 NetworkArgs
- 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 NetworkArgs
- 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 NetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NetworkArgs
- 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 networkResource = new ConfluentCloud.Network("networkResource", new()
{
Cloud = "string",
ConnectionTypes = new[]
{
"string",
},
Environment = new ConfluentCloud.Inputs.NetworkEnvironmentArgs
{
Id = "string",
},
Region = "string",
Aws = new[]
{
new ConfluentCloud.Inputs.NetworkAwArgs
{
PrivateLinkEndpointService = "string",
Vpc = "string",
},
},
Azures = new[]
{
new ConfluentCloud.Inputs.NetworkAzureArgs
{
PrivateLinkServiceAliases =
{
{ "string", "string" },
},
},
},
Cidr = "string",
DisplayName = "string",
Gcps = new[]
{
new ConfluentCloud.Inputs.NetworkGcpArgs
{
Project = "string",
VpcNetwork = "string",
},
},
Zones = new[]
{
"string",
},
});
example, err := confluentcloud.NewNetwork(ctx, "networkResource", &confluentcloud.NetworkArgs{
Cloud: pulumi.String("string"),
ConnectionTypes: pulumi.StringArray{
pulumi.String("string"),
},
Environment: &confluentcloud.NetworkEnvironmentArgs{
Id: pulumi.String("string"),
},
Region: pulumi.String("string"),
Aws: confluentcloud.NetworkAwArray{
&confluentcloud.NetworkAwArgs{
PrivateLinkEndpointService: pulumi.String("string"),
Vpc: pulumi.String("string"),
},
},
Azures: confluentcloud.NetworkAzureArray{
&confluentcloud.NetworkAzureArgs{
PrivateLinkServiceAliases: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
},
Cidr: pulumi.String("string"),
DisplayName: pulumi.String("string"),
Gcps: confluentcloud.NetworkGcpArray{
&confluentcloud.NetworkGcpArgs{
Project: pulumi.String("string"),
VpcNetwork: pulumi.String("string"),
},
},
Zones: pulumi.StringArray{
pulumi.String("string"),
},
})
var networkResource = new Network("networkResource", NetworkArgs.builder()
.cloud("string")
.connectionTypes("string")
.environment(NetworkEnvironmentArgs.builder()
.id("string")
.build())
.region("string")
.aws(NetworkAwArgs.builder()
.privateLinkEndpointService("string")
.vpc("string")
.build())
.azures(NetworkAzureArgs.builder()
.privateLinkServiceAliases(Map.of("string", "string"))
.build())
.cidr("string")
.displayName("string")
.gcps(NetworkGcpArgs.builder()
.project("string")
.vpcNetwork("string")
.build())
.zones("string")
.build());
network_resource = confluentcloud.Network("networkResource",
cloud="string",
connection_types=["string"],
environment={
"id": "string",
},
region="string",
aws=[{
"private_link_endpoint_service": "string",
"vpc": "string",
}],
azures=[{
"private_link_service_aliases": {
"string": "string",
},
}],
cidr="string",
display_name="string",
gcps=[{
"project": "string",
"vpc_network": "string",
}],
zones=["string"])
const networkResource = new confluentcloud.Network("networkResource", {
cloud: "string",
connectionTypes: ["string"],
environment: {
id: "string",
},
region: "string",
aws: [{
privateLinkEndpointService: "string",
vpc: "string",
}],
azures: [{
privateLinkServiceAliases: {
string: "string",
},
}],
cidr: "string",
displayName: "string",
gcps: [{
project: "string",
vpcNetwork: "string",
}],
zones: ["string"],
});
type: confluentcloud:Network
properties:
aws:
- privateLinkEndpointService: string
vpc: string
azures:
- privateLinkServiceAliases:
string: string
cidr: string
cloud: string
connectionTypes:
- string
displayName: string
environment:
id: string
gcps:
- project: string
vpcNetwork: string
region: string
zones:
- string
Network Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Network resource accepts the following input properties:
- Cloud string
- The cloud service provider in which the network exists. Accepted values are:
AWS,AZURE, andGCP. - Connection
Types List<string> - The list of connection types that may be used with the network. Accepted connection types are:
PEERING,TRANSITGATEWAY, andPRIVATELINK. - Environment
Pulumi.
Confluent Cloud. Inputs. Network Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Region string
- The cloud provider region where the network exists.
- Aws
List<Pulumi.
Confluent Cloud. Inputs. Network Aw> - (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
- Azures
List<Pulumi.
Confluent Cloud. Inputs. Network Azure> - (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
- Cidr string
- The IPv4 CIDR block to used for the network. Must be
/16. Required for VPC peering and AWS TransitGateway. - Display
Name string - The name of the Network.
- Gcps
List<Pulumi.
Confluent Cloud. Inputs. Network Gcp> - (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
- Zones List<string>
- The 3 availability zones for this network. They can optionally be specified for AWS networks
used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
On AWS, zones are AWS AZ IDs, for example,
use1-az3. On GCP, zones are GCP zones, for example,us-central1-c. On Azure, zones are Confluent-chosen names (for example,1,2,3) since Azure does not have universal zone identifiers.
- Cloud string
- The cloud service provider in which the network exists. Accepted values are:
AWS,AZURE, andGCP. - Connection
Types []string - The list of connection types that may be used with the network. Accepted connection types are:
PEERING,TRANSITGATEWAY, andPRIVATELINK. - Environment
Network
Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Region string
- The cloud provider region where the network exists.
- Aws
[]Network
Aw Args - (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
- Azures
[]Network
Azure Args - (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
- Cidr string
- The IPv4 CIDR block to used for the network. Must be
/16. Required for VPC peering and AWS TransitGateway. - Display
Name string - The name of the Network.
- Gcps
[]Network
Gcp Args - (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
- Zones []string
- The 3 availability zones for this network. They can optionally be specified for AWS networks
used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
On AWS, zones are AWS AZ IDs, for example,
use1-az3. On GCP, zones are GCP zones, for example,us-central1-c. On Azure, zones are Confluent-chosen names (for example,1,2,3) since Azure does not have universal zone identifiers.
- cloud String
- The cloud service provider in which the network exists. Accepted values are:
AWS,AZURE, andGCP. - connection
Types List<String> - The list of connection types that may be used with the network. Accepted connection types are:
PEERING,TRANSITGATEWAY, andPRIVATELINK. - environment
Network
Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- region String
- The cloud provider region where the network exists.
- aws
List<Network
Aw> - (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
- azures
List<Network
Azure> - (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
- cidr String
- The IPv4 CIDR block to used for the network. Must be
/16. Required for VPC peering and AWS TransitGateway. - display
Name String - The name of the Network.
- gcps
List<Network
Gcp> - (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
- zones List<String>
- The 3 availability zones for this network. They can optionally be specified for AWS networks
used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
On AWS, zones are AWS AZ IDs, for example,
use1-az3. On GCP, zones are GCP zones, for example,us-central1-c. On Azure, zones are Confluent-chosen names (for example,1,2,3) since Azure does not have universal zone identifiers.
- cloud string
- The cloud service provider in which the network exists. Accepted values are:
AWS,AZURE, andGCP. - connection
Types string[] - The list of connection types that may be used with the network. Accepted connection types are:
PEERING,TRANSITGATEWAY, andPRIVATELINK. - environment
Network
Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- region string
- The cloud provider region where the network exists.
- aws
Network
Aw[] - (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
- azures
Network
Azure[] - (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
- cidr string
- The IPv4 CIDR block to used for the network. Must be
/16. Required for VPC peering and AWS TransitGateway. - display
Name string - The name of the Network.
- gcps
Network
Gcp[] - (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
- zones string[]
- The 3 availability zones for this network. They can optionally be specified for AWS networks
used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
On AWS, zones are AWS AZ IDs, for example,
use1-az3. On GCP, zones are GCP zones, for example,us-central1-c. On Azure, zones are Confluent-chosen names (for example,1,2,3) since Azure does not have universal zone identifiers.
- cloud str
- The cloud service provider in which the network exists. Accepted values are:
AWS,AZURE, andGCP. - connection_
types Sequence[str] - The list of connection types that may be used with the network. Accepted connection types are:
PEERING,TRANSITGATEWAY, andPRIVATELINK. - environment
Network
Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- region str
- The cloud provider region where the network exists.
- aws
Sequence[Network
Aw Args] - (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
- azures
Sequence[Network
Azure Args] - (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
- cidr str
- The IPv4 CIDR block to used for the network. Must be
/16. Required for VPC peering and AWS TransitGateway. - display_
name str - The name of the Network.
- gcps
Sequence[Network
Gcp Args] - (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
- zones Sequence[str]
- The 3 availability zones for this network. They can optionally be specified for AWS networks
used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
On AWS, zones are AWS AZ IDs, for example,
use1-az3. On GCP, zones are GCP zones, for example,us-central1-c. On Azure, zones are Confluent-chosen names (for example,1,2,3) since Azure does not have universal zone identifiers.
- cloud String
- The cloud service provider in which the network exists. Accepted values are:
AWS,AZURE, andGCP. - connection
Types List<String> - The list of connection types that may be used with the network. Accepted connection types are:
PEERING,TRANSITGATEWAY, andPRIVATELINK. - environment Property Map
- Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- region String
- The cloud provider region where the network exists.
- aws List<Property Map>
- (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
- azures List<Property Map>
- (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
- cidr String
- The IPv4 CIDR block to used for the network. Must be
/16. Required for VPC peering and AWS TransitGateway. - display
Name String - The name of the Network.
- gcps List<Property Map>
- (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
- zones List<String>
- The 3 availability zones for this network. They can optionally be specified for AWS networks
used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
On AWS, zones are AWS AZ IDs, for example,
use1-az3. On GCP, zones are GCP zones, for example,us-central1-c. On Azure, zones are Confluent-chosen names (for example,1,2,3) since Azure does not have universal zone identifiers.
Outputs
All input properties are implicitly available as output properties. Additionally, the Network resource produces the following output properties:
- Dns
Domain string - (Optional String) The root DNS domain for the network, for example,
pr123a.us-east-2.aws.confluent.cloudif applicable. Present on Networks that support Private Link. - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Name string - (Required String) The Confluent Resource Name of the Network.
- Zonal
Subdomains Dictionary<string, string> - (Optional Map) The DNS subdomain for each zone. Present on networks that support Private Link. Keys are zone names, for example,
use2-az1and values are DNS domains, for example,use2-az1.pr123a.us-east-2.aws.confluent.cloud.
- Dns
Domain string - (Optional String) The root DNS domain for the network, for example,
pr123a.us-east-2.aws.confluent.cloudif applicable. Present on Networks that support Private Link. - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Name string - (Required String) The Confluent Resource Name of the Network.
- Zonal
Subdomains map[string]string - (Optional Map) The DNS subdomain for each zone. Present on networks that support Private Link. Keys are zone names, for example,
use2-az1and values are DNS domains, for example,use2-az1.pr123a.us-east-2.aws.confluent.cloud.
- dns
Domain String - (Optional String) The root DNS domain for the network, for example,
pr123a.us-east-2.aws.confluent.cloudif applicable. Present on Networks that support Private Link. - id String
- The provider-assigned unique ID for this managed resource.
- resource
Name String - (Required String) The Confluent Resource Name of the Network.
- zonal
Subdomains Map<String,String> - (Optional Map) The DNS subdomain for each zone. Present on networks that support Private Link. Keys are zone names, for example,
use2-az1and values are DNS domains, for example,use2-az1.pr123a.us-east-2.aws.confluent.cloud.
- dns
Domain string - (Optional String) The root DNS domain for the network, for example,
pr123a.us-east-2.aws.confluent.cloudif applicable. Present on Networks that support Private Link. - id string
- The provider-assigned unique ID for this managed resource.
- resource
Name string - (Required String) The Confluent Resource Name of the Network.
- zonal
Subdomains {[key: string]: string} - (Optional Map) The DNS subdomain for each zone. Present on networks that support Private Link. Keys are zone names, for example,
use2-az1and values are DNS domains, for example,use2-az1.pr123a.us-east-2.aws.confluent.cloud.
- dns_
domain str - (Optional String) The root DNS domain for the network, for example,
pr123a.us-east-2.aws.confluent.cloudif applicable. Present on Networks that support Private Link. - id str
- The provider-assigned unique ID for this managed resource.
- resource_
name str - (Required String) The Confluent Resource Name of the Network.
- zonal_
subdomains Mapping[str, str] - (Optional Map) The DNS subdomain for each zone. Present on networks that support Private Link. Keys are zone names, for example,
use2-az1and values are DNS domains, for example,use2-az1.pr123a.us-east-2.aws.confluent.cloud.
- dns
Domain String - (Optional String) The root DNS domain for the network, for example,
pr123a.us-east-2.aws.confluent.cloudif applicable. Present on Networks that support Private Link. - id String
- The provider-assigned unique ID for this managed resource.
- resource
Name String - (Required String) The Confluent Resource Name of the Network.
- zonal
Subdomains Map<String> - (Optional Map) The DNS subdomain for each zone. Present on networks that support Private Link. Keys are zone names, for example,
use2-az1and values are DNS domains, for example,use2-az1.pr123a.us-east-2.aws.confluent.cloud.
Look up Existing Network Resource
Get an existing Network 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?: NetworkState, opts?: CustomResourceOptions): Network@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aws: Optional[Sequence[NetworkAwArgs]] = None,
azures: Optional[Sequence[NetworkAzureArgs]] = None,
cidr: Optional[str] = None,
cloud: Optional[str] = None,
connection_types: Optional[Sequence[str]] = None,
display_name: Optional[str] = None,
dns_domain: Optional[str] = None,
environment: Optional[NetworkEnvironmentArgs] = None,
gcps: Optional[Sequence[NetworkGcpArgs]] = None,
region: Optional[str] = None,
resource_name: Optional[str] = None,
zonal_subdomains: Optional[Mapping[str, str]] = None,
zones: Optional[Sequence[str]] = None) -> Networkfunc GetNetwork(ctx *Context, name string, id IDInput, state *NetworkState, opts ...ResourceOption) (*Network, error)public static Network Get(string name, Input<string> id, NetworkState? state, CustomResourceOptions? opts = null)public static Network get(String name, Output<String> id, NetworkState state, CustomResourceOptions options)resources: _: type: confluentcloud:Network get: id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Aws
List<Pulumi.
Confluent Cloud. Inputs. Network Aw> - (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
- Azures
List<Pulumi.
Confluent Cloud. Inputs. Network Azure> - (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
- Cidr string
- The IPv4 CIDR block to used for the network. Must be
/16. Required for VPC peering and AWS TransitGateway. - Cloud string
- The cloud service provider in which the network exists. Accepted values are:
AWS,AZURE, andGCP. - Connection
Types List<string> - The list of connection types that may be used with the network. Accepted connection types are:
PEERING,TRANSITGATEWAY, andPRIVATELINK. - Display
Name string - The name of the Network.
- Dns
Domain string - (Optional String) The root DNS domain for the network, for example,
pr123a.us-east-2.aws.confluent.cloudif applicable. Present on Networks that support Private Link. - Environment
Pulumi.
Confluent Cloud. Inputs. Network Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Gcps
List<Pulumi.
Confluent Cloud. Inputs. Network Gcp> - (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
- Region string
- The cloud provider region where the network exists.
- Resource
Name string - (Required String) The Confluent Resource Name of the Network.
- Zonal
Subdomains Dictionary<string, string> - (Optional Map) The DNS subdomain for each zone. Present on networks that support Private Link. Keys are zone names, for example,
use2-az1and values are DNS domains, for example,use2-az1.pr123a.us-east-2.aws.confluent.cloud. - Zones List<string>
- The 3 availability zones for this network. They can optionally be specified for AWS networks
used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
On AWS, zones are AWS AZ IDs, for example,
use1-az3. On GCP, zones are GCP zones, for example,us-central1-c. On Azure, zones are Confluent-chosen names (for example,1,2,3) since Azure does not have universal zone identifiers.
- Aws
[]Network
Aw Args - (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
- Azures
[]Network
Azure Args - (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
- Cidr string
- The IPv4 CIDR block to used for the network. Must be
/16. Required for VPC peering and AWS TransitGateway. - Cloud string
- The cloud service provider in which the network exists. Accepted values are:
AWS,AZURE, andGCP. - Connection
Types []string - The list of connection types that may be used with the network. Accepted connection types are:
PEERING,TRANSITGATEWAY, andPRIVATELINK. - Display
Name string - The name of the Network.
- Dns
Domain string - (Optional String) The root DNS domain for the network, for example,
pr123a.us-east-2.aws.confluent.cloudif applicable. Present on Networks that support Private Link. - Environment
Network
Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- Gcps
[]Network
Gcp Args - (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
- Region string
- The cloud provider region where the network exists.
- Resource
Name string - (Required String) The Confluent Resource Name of the Network.
- Zonal
Subdomains map[string]string - (Optional Map) The DNS subdomain for each zone. Present on networks that support Private Link. Keys are zone names, for example,
use2-az1and values are DNS domains, for example,use2-az1.pr123a.us-east-2.aws.confluent.cloud. - Zones []string
- The 3 availability zones for this network. They can optionally be specified for AWS networks
used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
On AWS, zones are AWS AZ IDs, for example,
use1-az3. On GCP, zones are GCP zones, for example,us-central1-c. On Azure, zones are Confluent-chosen names (for example,1,2,3) since Azure does not have universal zone identifiers.
- aws
List<Network
Aw> - (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
- azures
List<Network
Azure> - (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
- cidr String
- The IPv4 CIDR block to used for the network. Must be
/16. Required for VPC peering and AWS TransitGateway. - cloud String
- The cloud service provider in which the network exists. Accepted values are:
AWS,AZURE, andGCP. - connection
Types List<String> - The list of connection types that may be used with the network. Accepted connection types are:
PEERING,TRANSITGATEWAY, andPRIVATELINK. - display
Name String - The name of the Network.
- dns
Domain String - (Optional String) The root DNS domain for the network, for example,
pr123a.us-east-2.aws.confluent.cloudif applicable. Present on Networks that support Private Link. - environment
Network
Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- gcps
List<Network
Gcp> - (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
- region String
- The cloud provider region where the network exists.
- resource
Name String - (Required String) The Confluent Resource Name of the Network.
- zonal
Subdomains Map<String,String> - (Optional Map) The DNS subdomain for each zone. Present on networks that support Private Link. Keys are zone names, for example,
use2-az1and values are DNS domains, for example,use2-az1.pr123a.us-east-2.aws.confluent.cloud. - zones List<String>
- The 3 availability zones for this network. They can optionally be specified for AWS networks
used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
On AWS, zones are AWS AZ IDs, for example,
use1-az3. On GCP, zones are GCP zones, for example,us-central1-c. On Azure, zones are Confluent-chosen names (for example,1,2,3) since Azure does not have universal zone identifiers.
- aws
Network
Aw[] - (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
- azures
Network
Azure[] - (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
- cidr string
- The IPv4 CIDR block to used for the network. Must be
/16. Required for VPC peering and AWS TransitGateway. - cloud string
- The cloud service provider in which the network exists. Accepted values are:
AWS,AZURE, andGCP. - connection
Types string[] - The list of connection types that may be used with the network. Accepted connection types are:
PEERING,TRANSITGATEWAY, andPRIVATELINK. - display
Name string - The name of the Network.
- dns
Domain string - (Optional String) The root DNS domain for the network, for example,
pr123a.us-east-2.aws.confluent.cloudif applicable. Present on Networks that support Private Link. - environment
Network
Environment - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- gcps
Network
Gcp[] - (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
- region string
- The cloud provider region where the network exists.
- resource
Name string - (Required String) The Confluent Resource Name of the Network.
- zonal
Subdomains {[key: string]: string} - (Optional Map) The DNS subdomain for each zone. Present on networks that support Private Link. Keys are zone names, for example,
use2-az1and values are DNS domains, for example,use2-az1.pr123a.us-east-2.aws.confluent.cloud. - zones string[]
- The 3 availability zones for this network. They can optionally be specified for AWS networks
used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
On AWS, zones are AWS AZ IDs, for example,
use1-az3. On GCP, zones are GCP zones, for example,us-central1-c. On Azure, zones are Confluent-chosen names (for example,1,2,3) since Azure does not have universal zone identifiers.
- aws
Sequence[Network
Aw Args] - (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
- azures
Sequence[Network
Azure Args] - (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
- cidr str
- The IPv4 CIDR block to used for the network. Must be
/16. Required for VPC peering and AWS TransitGateway. - cloud str
- The cloud service provider in which the network exists. Accepted values are:
AWS,AZURE, andGCP. - connection_
types Sequence[str] - The list of connection types that may be used with the network. Accepted connection types are:
PEERING,TRANSITGATEWAY, andPRIVATELINK. - display_
name str - The name of the Network.
- dns_
domain str - (Optional String) The root DNS domain for the network, for example,
pr123a.us-east-2.aws.confluent.cloudif applicable. Present on Networks that support Private Link. - environment
Network
Environment Args - Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- gcps
Sequence[Network
Gcp Args] - (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
- region str
- The cloud provider region where the network exists.
- resource_
name str - (Required String) The Confluent Resource Name of the Network.
- zonal_
subdomains Mapping[str, str] - (Optional Map) The DNS subdomain for each zone. Present on networks that support Private Link. Keys are zone names, for example,
use2-az1and values are DNS domains, for example,use2-az1.pr123a.us-east-2.aws.confluent.cloud. - zones Sequence[str]
- The 3 availability zones for this network. They can optionally be specified for AWS networks
used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
On AWS, zones are AWS AZ IDs, for example,
use1-az3. On GCP, zones are GCP zones, for example,us-central1-c. On Azure, zones are Confluent-chosen names (for example,1,2,3) since Azure does not have universal zone identifiers.
- aws List<Property Map>
- (Optional Configuration Block) The AWS-specific network details if available. It supports the following:
- azures List<Property Map>
- (Optional Configuration Block) The Azure-specific network details if available. It supports the following:
- cidr String
- The IPv4 CIDR block to used for the network. Must be
/16. Required for VPC peering and AWS TransitGateway. - cloud String
- The cloud service provider in which the network exists. Accepted values are:
AWS,AZURE, andGCP. - connection
Types List<String> - The list of connection types that may be used with the network. Accepted connection types are:
PEERING,TRANSITGATEWAY, andPRIVATELINK. - display
Name String - The name of the Network.
- dns
Domain String - (Optional String) The root DNS domain for the network, for example,
pr123a.us-east-2.aws.confluent.cloudif applicable. Present on Networks that support Private Link. - environment Property Map
- Environment objects represent an isolated namespace for your Confluent resources for organizational purposes.
- gcps List<Property Map>
- (Optional Configuration Block) The GCP-specific network details if available. It supports the following:
- region String
- The cloud provider region where the network exists.
- resource
Name String - (Required String) The Confluent Resource Name of the Network.
- zonal
Subdomains Map<String> - (Optional Map) The DNS subdomain for each zone. Present on networks that support Private Link. Keys are zone names, for example,
use2-az1and values are DNS domains, for example,use2-az1.pr123a.us-east-2.aws.confluent.cloud. - zones List<String>
- The 3 availability zones for this network. They can optionally be specified for AWS networks
used with Private Link. Otherwise, they are automatically chosen by Confluent Cloud.
On AWS, zones are AWS AZ IDs, for example,
use1-az3. On GCP, zones are GCP zones, for example,us-central1-c. On Azure, zones are Confluent-chosen names (for example,1,2,3) since Azure does not have universal zone identifiers.
Supporting Types
NetworkAw, NetworkAwArgs
- Private
Link stringEndpoint Service - (Optional String) The AWS VPC endpoint service for the network (used for Private Link) if available.
- Vpc string
- (Required String) The AWS VPC ID for the network.
- Private
Link stringEndpoint Service - (Optional String) The AWS VPC endpoint service for the network (used for Private Link) if available.
- Vpc string
- (Required String) The AWS VPC ID for the network.
- private
Link StringEndpoint Service - (Optional String) The AWS VPC endpoint service for the network (used for Private Link) if available.
- vpc String
- (Required String) The AWS VPC ID for the network.
- private
Link stringEndpoint Service - (Optional String) The AWS VPC endpoint service for the network (used for Private Link) if available.
- vpc string
- (Required String) The AWS VPC ID for the network.
- private_
link_ strendpoint_ service - (Optional String) The AWS VPC endpoint service for the network (used for Private Link) if available.
- vpc str
- (Required String) The AWS VPC ID for the network.
- private
Link StringEndpoint Service - (Optional String) The AWS VPC endpoint service for the network (used for Private Link) if available.
- vpc String
- (Required String) The AWS VPC ID for the network.
NetworkAzure, NetworkAzureArgs
- Private
Link Dictionary<string, string>Service Aliases - (Optional Map) The mapping of zones to Private Link Service Aliases if available. Keys are zone names, for example,
1and values are Azure Private Link Service Aliases, for example,s-nk99e-privatelink-1.8c43dcd0-695c-1234-bc35-11fe6abb303a.centralus.azure.privatelinkservice.
- Private
Link map[string]stringService Aliases - (Optional Map) The mapping of zones to Private Link Service Aliases if available. Keys are zone names, for example,
1and values are Azure Private Link Service Aliases, for example,s-nk99e-privatelink-1.8c43dcd0-695c-1234-bc35-11fe6abb303a.centralus.azure.privatelinkservice.
- private
Link Map<String,String>Service Aliases - (Optional Map) The mapping of zones to Private Link Service Aliases if available. Keys are zone names, for example,
1and values are Azure Private Link Service Aliases, for example,s-nk99e-privatelink-1.8c43dcd0-695c-1234-bc35-11fe6abb303a.centralus.azure.privatelinkservice.
- private
Link {[key: string]: string}Service Aliases - (Optional Map) The mapping of zones to Private Link Service Aliases if available. Keys are zone names, for example,
1and values are Azure Private Link Service Aliases, for example,s-nk99e-privatelink-1.8c43dcd0-695c-1234-bc35-11fe6abb303a.centralus.azure.privatelinkservice.
- private_
link_ Mapping[str, str]service_ aliases - (Optional Map) The mapping of zones to Private Link Service Aliases if available. Keys are zone names, for example,
1and values are Azure Private Link Service Aliases, for example,s-nk99e-privatelink-1.8c43dcd0-695c-1234-bc35-11fe6abb303a.centralus.azure.privatelinkservice.
- private
Link Map<String>Service Aliases - (Optional Map) The mapping of zones to Private Link Service Aliases if available. Keys are zone names, for example,
1and values are Azure Private Link Service Aliases, for example,s-nk99e-privatelink-1.8c43dcd0-695c-1234-bc35-11fe6abb303a.centralus.azure.privatelinkservice.
NetworkEnvironment, NetworkEnvironmentArgs
- Id string
- The ID of the Environment that the Network belongs to, for example,
env-abc123.
- Id string
- The ID of the Environment that the Network belongs to, for example,
env-abc123.
- id String
- The ID of the Environment that the Network belongs to, for example,
env-abc123.
- id string
- The ID of the Environment that the Network belongs to, for example,
env-abc123.
- id str
- The ID of the Environment that the Network belongs to, for example,
env-abc123.
- id String
- The ID of the Environment that the Network belongs to, for example,
env-abc123.
NetworkGcp, NetworkGcpArgs
- Project string
- (Required String) The GCP project.
- Vpc
Network string - (Required String) The GCP VPC network name.
- Project string
- (Required String) The GCP project.
- Vpc
Network string - (Required String) The GCP VPC network name.
- project String
- (Required String) The GCP project.
- vpc
Network String - (Required String) The GCP VPC network name.
- project string
- (Required String) The GCP project.
- vpc
Network string - (Required String) The GCP VPC network name.
- project str
- (Required String) The GCP project.
- vpc_
network str - (Required String) The GCP VPC network name.
- project String
- (Required String) The GCP project.
- vpc
Network String - (Required String) The GCP VPC network name.
Package Details
- Repository
- Confluent Cloud pulumi/pulumi-confluentcloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
confluentTerraform Provider.
published on Monday, Mar 9, 2026 by Pulumi
