1. Packages
  2. Packages
  3. Redpanda Provider
  4. API Docs
  5. ServerlessPrivateLink
Viewing docs for redpanda 2.1.0
published on Wednesday, Jun 24, 2026 by redpanda-data
Viewing docs for redpanda 2.1.0
published on Wednesday, Jun 24, 2026 by redpanda-data

    Manages a Redpanda Serverless Private Link

    Create ServerlessPrivateLink Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ServerlessPrivateLink(name: string, args: ServerlessPrivateLinkArgs, opts?: CustomResourceOptions);
    @overload
    def ServerlessPrivateLink(resource_name: str,
                              args: ServerlessPrivateLinkArgs,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServerlessPrivateLink(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              cloud_provider: Optional[str] = None,
                              resource_group_id: Optional[str] = None,
                              serverless_region: Optional[str] = None,
                              allow_deletion: Optional[bool] = None,
                              aws_config: Optional[ServerlessPrivateLinkAwsConfigArgs] = None,
                              cloud_provider_config: Optional[ServerlessPrivateLinkCloudProviderConfigArgs] = None,
                              name: Optional[str] = None,
                              timeouts: Optional[ServerlessPrivateLinkTimeoutsArgs] = None)
    func NewServerlessPrivateLink(ctx *Context, name string, args ServerlessPrivateLinkArgs, opts ...ResourceOption) (*ServerlessPrivateLink, error)
    public ServerlessPrivateLink(string name, ServerlessPrivateLinkArgs args, CustomResourceOptions? opts = null)
    public ServerlessPrivateLink(String name, ServerlessPrivateLinkArgs args)
    public ServerlessPrivateLink(String name, ServerlessPrivateLinkArgs args, CustomResourceOptions options)
    
    type: redpanda:ServerlessPrivateLink
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "redpanda_serverlessprivatelink" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args ServerlessPrivateLinkArgs
    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 ServerlessPrivateLinkArgs
    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 ServerlessPrivateLinkArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServerlessPrivateLinkArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServerlessPrivateLinkArgs
    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 serverlessPrivateLinkResource = new Redpanda.ServerlessPrivateLink("serverlessPrivateLinkResource", new()
    {
        CloudProvider = "string",
        ResourceGroupId = "string",
        ServerlessRegion = "string",
        AllowDeletion = false,
        AwsConfig = new Redpanda.Inputs.ServerlessPrivateLinkAwsConfigArgs
        {
            AllowedPrincipals = new[]
            {
                "string",
            },
        },
        Name = "string",
        Timeouts = new Redpanda.Inputs.ServerlessPrivateLinkTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Update = "string",
        },
    });
    
    example, err := redpanda.NewServerlessPrivateLink(ctx, "serverlessPrivateLinkResource", &redpanda.ServerlessPrivateLinkArgs{
    	CloudProvider:    pulumi.String("string"),
    	ResourceGroupId:  pulumi.String("string"),
    	ServerlessRegion: pulumi.String("string"),
    	AllowDeletion:    pulumi.Bool(false),
    	AwsConfig: &redpanda.ServerlessPrivateLinkAwsConfigArgs{
    		AllowedPrincipals: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    	Timeouts: &redpanda.ServerlessPrivateLinkTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    resource "redpanda_serverlessprivatelink" "serverlessPrivateLinkResource" {
      cloud_provider    = "string"
      resource_group_id = "string"
      serverless_region = "string"
      allow_deletion    = false
      aws_config = {
        allowed_principals = ["string"]
      }
      name = "string"
      timeouts = {
        create = "string"
        delete = "string"
        update = "string"
      }
    }
    
    var serverlessPrivateLinkResource = new ServerlessPrivateLink("serverlessPrivateLinkResource", ServerlessPrivateLinkArgs.builder()
        .cloudProvider("string")
        .resourceGroupId("string")
        .serverlessRegion("string")
        .allowDeletion(false)
        .awsConfig(ServerlessPrivateLinkAwsConfigArgs.builder()
            .allowedPrincipals("string")
            .build())
        .name("string")
        .timeouts(ServerlessPrivateLinkTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .update("string")
            .build())
        .build());
    
    serverless_private_link_resource = redpanda.ServerlessPrivateLink("serverlessPrivateLinkResource",
        cloud_provider="string",
        resource_group_id="string",
        serverless_region="string",
        allow_deletion=False,
        aws_config={
            "allowed_principals": ["string"],
        },
        name="string",
        timeouts={
            "create": "string",
            "delete": "string",
            "update": "string",
        })
    
    const serverlessPrivateLinkResource = new redpanda.ServerlessPrivateLink("serverlessPrivateLinkResource", {
        cloudProvider: "string",
        resourceGroupId: "string",
        serverlessRegion: "string",
        allowDeletion: false,
        awsConfig: {
            allowedPrincipals: ["string"],
        },
        name: "string",
        timeouts: {
            create: "string",
            "delete": "string",
            update: "string",
        },
    });
    
    type: redpanda:ServerlessPrivateLink
    properties:
        allowDeletion: false
        awsConfig:
            allowedPrincipals:
                - string
        cloudProvider: string
        name: string
        resourceGroupId: string
        serverlessRegion: string
        timeouts:
            create: string
            delete: string
            update: string
    

    ServerlessPrivateLink 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 ServerlessPrivateLink resource accepts the following input properties:

    CloudProvider string
    Cloud provider where resources are created.
    ResourceGroupId string
    Resource Group ID
    ServerlessRegion string
    Serverless Region
    AllowDeletion bool
    AwsConfig ServerlessPrivateLinkAwsConfig
    AWS-specific configuration. Required when cloud*provider is aws.
    CloudProviderConfig ServerlessPrivateLinkCloudProviderConfig
    Cloud Provider Config configuration

    Deprecated: Deprecated

    Name string
    Name
    Timeouts ServerlessPrivateLinkTimeouts
    CloudProvider string
    Cloud provider where resources are created.
    ResourceGroupId string
    Resource Group ID
    ServerlessRegion string
    Serverless Region
    AllowDeletion bool
    AwsConfig ServerlessPrivateLinkAwsConfigArgs
    AWS-specific configuration. Required when cloud*provider is aws.
    CloudProviderConfig ServerlessPrivateLinkCloudProviderConfigArgs
    Cloud Provider Config configuration

    Deprecated: Deprecated

    Name string
    Name
    Timeouts ServerlessPrivateLinkTimeoutsArgs
    cloud_provider string
    Cloud provider where resources are created.
    resource_group_id string
    Resource Group ID
    serverless_region string
    Serverless Region
    allow_deletion bool
    aws_config object
    AWS-specific configuration. Required when cloud*provider is aws.
    cloud_provider_config object
    Cloud Provider Config configuration

    Deprecated: Deprecated

    name string
    Name
    timeouts object
    cloudProvider String
    Cloud provider where resources are created.
    resourceGroupId String
    Resource Group ID
    serverlessRegion String
    Serverless Region
    allowDeletion Boolean
    awsConfig ServerlessPrivateLinkAwsConfig
    AWS-specific configuration. Required when cloud*provider is aws.
    cloudProviderConfig ServerlessPrivateLinkCloudProviderConfig
    Cloud Provider Config configuration

    Deprecated: Deprecated

    name String
    Name
    timeouts ServerlessPrivateLinkTimeouts
    cloudProvider string
    Cloud provider where resources are created.
    resourceGroupId string
    Resource Group ID
    serverlessRegion string
    Serverless Region
    allowDeletion boolean
    awsConfig ServerlessPrivateLinkAwsConfig
    AWS-specific configuration. Required when cloud*provider is aws.
    cloudProviderConfig ServerlessPrivateLinkCloudProviderConfig
    Cloud Provider Config configuration

    Deprecated: Deprecated

    name string
    Name
    timeouts ServerlessPrivateLinkTimeouts
    cloud_provider str
    Cloud provider where resources are created.
    resource_group_id str
    Resource Group ID
    serverless_region str
    Serverless Region
    allow_deletion bool
    aws_config ServerlessPrivateLinkAwsConfigArgs
    AWS-specific configuration. Required when cloud*provider is aws.
    cloud_provider_config ServerlessPrivateLinkCloudProviderConfigArgs
    Cloud Provider Config configuration

    Deprecated: Deprecated

    name str
    Name
    timeouts ServerlessPrivateLinkTimeoutsArgs
    cloudProvider String
    Cloud provider where resources are created.
    resourceGroupId String
    Resource Group ID
    serverlessRegion String
    Serverless Region
    allowDeletion Boolean
    awsConfig Property Map
    AWS-specific configuration. Required when cloud*provider is aws.
    cloudProviderConfig Property Map
    Cloud Provider Config configuration

    Deprecated: Deprecated

    name String
    Name
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ServerlessPrivateLink resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    Status ServerlessPrivateLinkStatus
    ServerlessPrivateLinkStatus contains provider-specific status information
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    Status ServerlessPrivateLinkStatus
    ServerlessPrivateLinkStatus contains provider-specific status information
    id string
    The provider-assigned unique ID for this managed resource.
    state string
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    status object
    ServerlessPrivateLinkStatus contains provider-specific status information
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    status ServerlessPrivateLinkStatus
    ServerlessPrivateLinkStatus contains provider-specific status information
    id string
    The provider-assigned unique ID for this managed resource.
    state string
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    status ServerlessPrivateLinkStatus
    ServerlessPrivateLinkStatus contains provider-specific status information
    id str
    The provider-assigned unique ID for this managed resource.
    state str
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    status ServerlessPrivateLinkStatus
    ServerlessPrivateLinkStatus contains provider-specific status information
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    status Property Map
    ServerlessPrivateLinkStatus contains provider-specific status information

    Look up Existing ServerlessPrivateLink Resource

    Get an existing ServerlessPrivateLink 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?: ServerlessPrivateLinkState, opts?: CustomResourceOptions): ServerlessPrivateLink
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allow_deletion: Optional[bool] = None,
            aws_config: Optional[ServerlessPrivateLinkAwsConfigArgs] = None,
            cloud_provider: Optional[str] = None,
            cloud_provider_config: Optional[ServerlessPrivateLinkCloudProviderConfigArgs] = None,
            name: Optional[str] = None,
            resource_group_id: Optional[str] = None,
            serverless_region: Optional[str] = None,
            state: Optional[str] = None,
            status: Optional[ServerlessPrivateLinkStatusArgs] = None,
            timeouts: Optional[ServerlessPrivateLinkTimeoutsArgs] = None) -> ServerlessPrivateLink
    func GetServerlessPrivateLink(ctx *Context, name string, id IDInput, state *ServerlessPrivateLinkState, opts ...ResourceOption) (*ServerlessPrivateLink, error)
    public static ServerlessPrivateLink Get(string name, Input<string> id, ServerlessPrivateLinkState? state, CustomResourceOptions? opts = null)
    public static ServerlessPrivateLink get(String name, Output<String> id, ServerlessPrivateLinkState state, CustomResourceOptions options)
    resources:  _:    type: redpanda:ServerlessPrivateLink    get:      id: ${id}
    import {
      to = redpanda_serverlessprivatelink.example
      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.
    The following state arguments are supported:
    AllowDeletion bool
    AwsConfig ServerlessPrivateLinkAwsConfig
    AWS-specific configuration. Required when cloud*provider is aws.
    CloudProvider string
    Cloud provider where resources are created.
    CloudProviderConfig ServerlessPrivateLinkCloudProviderConfig
    Cloud Provider Config configuration

    Deprecated: Deprecated

    Name string
    Name
    ResourceGroupId string
    Resource Group ID
    ServerlessRegion string
    Serverless Region
    State string
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    Status ServerlessPrivateLinkStatus
    ServerlessPrivateLinkStatus contains provider-specific status information
    Timeouts ServerlessPrivateLinkTimeouts
    AllowDeletion bool
    AwsConfig ServerlessPrivateLinkAwsConfigArgs
    AWS-specific configuration. Required when cloud*provider is aws.
    CloudProvider string
    Cloud provider where resources are created.
    CloudProviderConfig ServerlessPrivateLinkCloudProviderConfigArgs
    Cloud Provider Config configuration

    Deprecated: Deprecated

    Name string
    Name
    ResourceGroupId string
    Resource Group ID
    ServerlessRegion string
    Serverless Region
    State string
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    Status ServerlessPrivateLinkStatusArgs
    ServerlessPrivateLinkStatus contains provider-specific status information
    Timeouts ServerlessPrivateLinkTimeoutsArgs
    allow_deletion bool
    aws_config object
    AWS-specific configuration. Required when cloud*provider is aws.
    cloud_provider string
    Cloud provider where resources are created.
    cloud_provider_config object
    Cloud Provider Config configuration

    Deprecated: Deprecated

    name string
    Name
    resource_group_id string
    Resource Group ID
    serverless_region string
    Serverless Region
    state string
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    status object
    ServerlessPrivateLinkStatus contains provider-specific status information
    timeouts object
    allowDeletion Boolean
    awsConfig ServerlessPrivateLinkAwsConfig
    AWS-specific configuration. Required when cloud*provider is aws.
    cloudProvider String
    Cloud provider where resources are created.
    cloudProviderConfig ServerlessPrivateLinkCloudProviderConfig
    Cloud Provider Config configuration

    Deprecated: Deprecated

    name String
    Name
    resourceGroupId String
    Resource Group ID
    serverlessRegion String
    Serverless Region
    state String
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    status ServerlessPrivateLinkStatus
    ServerlessPrivateLinkStatus contains provider-specific status information
    timeouts ServerlessPrivateLinkTimeouts
    allowDeletion boolean
    awsConfig ServerlessPrivateLinkAwsConfig
    AWS-specific configuration. Required when cloud*provider is aws.
    cloudProvider string
    Cloud provider where resources are created.
    cloudProviderConfig ServerlessPrivateLinkCloudProviderConfig
    Cloud Provider Config configuration

    Deprecated: Deprecated

    name string
    Name
    resourceGroupId string
    Resource Group ID
    serverlessRegion string
    Serverless Region
    state string
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    status ServerlessPrivateLinkStatus
    ServerlessPrivateLinkStatus contains provider-specific status information
    timeouts ServerlessPrivateLinkTimeouts
    allow_deletion bool
    aws_config ServerlessPrivateLinkAwsConfigArgs
    AWS-specific configuration. Required when cloud*provider is aws.
    cloud_provider str
    Cloud provider where resources are created.
    cloud_provider_config ServerlessPrivateLinkCloudProviderConfigArgs
    Cloud Provider Config configuration

    Deprecated: Deprecated

    name str
    Name
    resource_group_id str
    Resource Group ID
    serverless_region str
    Serverless Region
    state str
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    status ServerlessPrivateLinkStatusArgs
    ServerlessPrivateLinkStatus contains provider-specific status information
    timeouts ServerlessPrivateLinkTimeoutsArgs
    allowDeletion Boolean
    awsConfig Property Map
    AWS-specific configuration. Required when cloud*provider is aws.
    cloudProvider String
    Cloud provider where resources are created.
    cloudProviderConfig Property Map
    Cloud Provider Config configuration

    Deprecated: Deprecated

    name String
    Name
    resourceGroupId String
    Resource Group ID
    serverlessRegion String
    Serverless Region
    state String
    • STATECREATING: Private link is being created. - STATEREADY: Private link is ready to use. - STATEDELETING: Private link is being deleted. - STATEFAILED: Private link is in an error state. - STATE_UPDATING: Private link is in an updating state.
    status Property Map
    ServerlessPrivateLinkStatus contains provider-specific status information
    timeouts Property Map

    Supporting Types

    ServerlessPrivateLinkAwsConfig, ServerlessPrivateLinkAwsConfigArgs

    AllowedPrincipals List<string>
    Allowed Principals. Must have at least 1 items.
    AllowedPrincipals []string
    Allowed Principals. Must have at least 1 items.
    allowed_principals list(string)
    Allowed Principals. Must have at least 1 items.
    allowedPrincipals List<String>
    Allowed Principals. Must have at least 1 items.
    allowedPrincipals string[]
    Allowed Principals. Must have at least 1 items.
    allowed_principals Sequence[str]
    Allowed Principals. Must have at least 1 items.
    allowedPrincipals List<String>
    Allowed Principals. Must have at least 1 items.

    ServerlessPrivateLinkCloudProviderConfig, ServerlessPrivateLinkCloudProviderConfigArgs

    aws object
    AWS configuration
    aws Property Map
    AWS configuration

    ServerlessPrivateLinkCloudProviderConfigAws, ServerlessPrivateLinkCloudProviderConfigAwsArgs

    AllowedPrincipals List<string>
    Allowed Principals
    AllowedPrincipals []string
    Allowed Principals
    allowed_principals list(string)
    Allowed Principals
    allowedPrincipals List<String>
    Allowed Principals
    allowedPrincipals string[]
    Allowed Principals
    allowed_principals Sequence[str]
    Allowed Principals
    allowedPrincipals List<String>
    Allowed Principals

    ServerlessPrivateLinkStatus, ServerlessPrivateLinkStatusArgs

    aws object
    AWS configuration
    aws Property Map
    AWS configuration

    ServerlessPrivateLinkStatusAws, ServerlessPrivateLinkStatusAwsArgs

    AvailabilityZones List<string>
    Availability Zones
    VpcEndpointServiceName string
    VPC Endpoint Service Name
    AvailabilityZones []string
    Availability Zones
    VpcEndpointServiceName string
    VPC Endpoint Service Name
    availability_zones list(string)
    Availability Zones
    vpc_endpoint_service_name string
    VPC Endpoint Service Name
    availabilityZones List<String>
    Availability Zones
    vpcEndpointServiceName String
    VPC Endpoint Service Name
    availabilityZones string[]
    Availability Zones
    vpcEndpointServiceName string
    VPC Endpoint Service Name
    availability_zones Sequence[str]
    Availability Zones
    vpc_endpoint_service_name str
    VPC Endpoint Service Name
    availabilityZones List<String>
    Availability Zones
    vpcEndpointServiceName String
    VPC Endpoint Service Name

    ServerlessPrivateLinkTimeouts, ServerlessPrivateLinkTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Package Details

    Repository
    redpanda redpanda-data/terraform-provider-redpanda
    License
    Notes
    This Pulumi package is based on the redpanda Terraform Provider.
    Viewing docs for redpanda 2.1.0
    published on Wednesday, Jun 24, 2026 by redpanda-data

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial