redpanda.Network
Explore with Pulumi AI
Creates a network in the Redpanda Cloud.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as redpanda from "@pulumi/redpanda";
const exampleResourceGroup = new redpanda.ResourceGroup("exampleResourceGroup", {});
const exampleNetwork = new redpanda.Network("exampleNetwork", {
resourceGroupId: exampleResourceGroup.id,
cloudProvider: "aws",
region: "us-west-2",
clusterType: "dedicated",
cidrBlock: "10.0.0.0/20",
});
import pulumi
import pulumi_redpanda as redpanda
example_resource_group = redpanda.ResourceGroup("exampleResourceGroup")
example_network = redpanda.Network("exampleNetwork",
resource_group_id=example_resource_group.id,
cloud_provider="aws",
region="us-west-2",
cluster_type="dedicated",
cidr_block="10.0.0.0/20")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/redpanda/redpanda"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := redpanda.NewResourceGroup(ctx, "exampleResourceGroup", nil)
if err != nil {
return err
}
_, err = redpanda.NewNetwork(ctx, "exampleNetwork", &redpanda.NetworkArgs{
ResourceGroupId: exampleResourceGroup.ID(),
CloudProvider: pulumi.String("aws"),
Region: pulumi.String("us-west-2"),
ClusterType: pulumi.String("dedicated"),
CidrBlock: pulumi.String("10.0.0.0/20"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Redpanda = Pulumi.Redpanda;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Redpanda.ResourceGroup("exampleResourceGroup");
var exampleNetwork = new Redpanda.Network("exampleNetwork", new()
{
ResourceGroupId = exampleResourceGroup.Id,
CloudProvider = "aws",
Region = "us-west-2",
ClusterType = "dedicated",
CidrBlock = "10.0.0.0/20",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.redpanda.ResourceGroup;
import com.pulumi.redpanda.Network;
import com.pulumi.redpanda.NetworkArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var exampleResourceGroup = new ResourceGroup("exampleResourceGroup");
var exampleNetwork = new Network("exampleNetwork", NetworkArgs.builder()
.resourceGroupId(exampleResourceGroup.id())
.cloudProvider("aws")
.region("us-west-2")
.clusterType("dedicated")
.cidrBlock("10.0.0.0/20")
.build());
}
}
resources:
exampleResourceGroup:
type: redpanda:ResourceGroup
exampleNetwork:
type: redpanda:Network
properties:
resourceGroupId: ${exampleResourceGroup.id}
cloudProvider: aws
region: us-west-2
clusterType: dedicated
cidrBlock: 10.0.0.0/20
API Reference
For more information, see the Redpanda Cloud Control Plane API documentation.
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_provider: Optional[str] = None,
cluster_type: Optional[str] = None,
region: Optional[str] = None,
resource_group_id: Optional[str] = None,
cidr_block: Optional[str] = None,
customer_managed_resources: Optional[NetworkCustomerManagedResourcesArgs] = None,
name: Optional[str] = None,
timeouts: Optional[NetworkTimeoutsArgs] = 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: redpanda: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 Redpanda.Network("networkResource", new()
{
CloudProvider = "string",
ClusterType = "string",
Region = "string",
ResourceGroupId = "string",
CidrBlock = "string",
CustomerManagedResources = new Redpanda.Inputs.NetworkCustomerManagedResourcesArgs
{
Aws = new Redpanda.Inputs.NetworkCustomerManagedResourcesAwsArgs
{
DynamodbTable = new Redpanda.Inputs.NetworkCustomerManagedResourcesAwsDynamodbTableArgs
{
Arn = "string",
},
ManagementBucket = new Redpanda.Inputs.NetworkCustomerManagedResourcesAwsManagementBucketArgs
{
Arn = "string",
},
PrivateSubnets = new Redpanda.Inputs.NetworkCustomerManagedResourcesAwsPrivateSubnetsArgs
{
Arns = new[]
{
"string",
},
},
Vpc = new Redpanda.Inputs.NetworkCustomerManagedResourcesAwsVpcArgs
{
Arn = "string",
},
},
Gcp = new Redpanda.Inputs.NetworkCustomerManagedResourcesGcpArgs
{
ManagementBucket = new Redpanda.Inputs.NetworkCustomerManagedResourcesGcpManagementBucketArgs
{
Name = "string",
},
NetworkName = "string",
NetworkProjectId = "string",
},
},
Name = "string",
Timeouts = new Redpanda.Inputs.NetworkTimeoutsArgs
{
Create = "string",
Delete = "string",
},
});
example, err := redpanda.NewNetwork(ctx, "networkResource", &redpanda.NetworkArgs{
CloudProvider: pulumi.String("string"),
ClusterType: pulumi.String("string"),
Region: pulumi.String("string"),
ResourceGroupId: pulumi.String("string"),
CidrBlock: pulumi.String("string"),
CustomerManagedResources: &redpanda.NetworkCustomerManagedResourcesArgs{
Aws: &redpanda.NetworkCustomerManagedResourcesAwsArgs{
DynamodbTable: &redpanda.NetworkCustomerManagedResourcesAwsDynamodbTableArgs{
Arn: pulumi.String("string"),
},
ManagementBucket: &redpanda.NetworkCustomerManagedResourcesAwsManagementBucketArgs{
Arn: pulumi.String("string"),
},
PrivateSubnets: &redpanda.NetworkCustomerManagedResourcesAwsPrivateSubnetsArgs{
Arns: pulumi.StringArray{
pulumi.String("string"),
},
},
Vpc: &redpanda.NetworkCustomerManagedResourcesAwsVpcArgs{
Arn: pulumi.String("string"),
},
},
Gcp: &redpanda.NetworkCustomerManagedResourcesGcpArgs{
ManagementBucket: &redpanda.NetworkCustomerManagedResourcesGcpManagementBucketArgs{
Name: pulumi.String("string"),
},
NetworkName: pulumi.String("string"),
NetworkProjectId: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Timeouts: &redpanda.NetworkTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
})
var networkResource = new Network("networkResource", NetworkArgs.builder()
.cloudProvider("string")
.clusterType("string")
.region("string")
.resourceGroupId("string")
.cidrBlock("string")
.customerManagedResources(NetworkCustomerManagedResourcesArgs.builder()
.aws(NetworkCustomerManagedResourcesAwsArgs.builder()
.dynamodbTable(NetworkCustomerManagedResourcesAwsDynamodbTableArgs.builder()
.arn("string")
.build())
.managementBucket(NetworkCustomerManagedResourcesAwsManagementBucketArgs.builder()
.arn("string")
.build())
.privateSubnets(NetworkCustomerManagedResourcesAwsPrivateSubnetsArgs.builder()
.arns("string")
.build())
.vpc(NetworkCustomerManagedResourcesAwsVpcArgs.builder()
.arn("string")
.build())
.build())
.gcp(NetworkCustomerManagedResourcesGcpArgs.builder()
.managementBucket(NetworkCustomerManagedResourcesGcpManagementBucketArgs.builder()
.name("string")
.build())
.networkName("string")
.networkProjectId("string")
.build())
.build())
.name("string")
.timeouts(NetworkTimeoutsArgs.builder()
.create("string")
.delete("string")
.build())
.build());
network_resource = redpanda.Network("networkResource",
cloud_provider="string",
cluster_type="string",
region="string",
resource_group_id="string",
cidr_block="string",
customer_managed_resources={
"aws": {
"dynamodb_table": {
"arn": "string",
},
"management_bucket": {
"arn": "string",
},
"private_subnets": {
"arns": ["string"],
},
"vpc": {
"arn": "string",
},
},
"gcp": {
"management_bucket": {
"name": "string",
},
"network_name": "string",
"network_project_id": "string",
},
},
name="string",
timeouts={
"create": "string",
"delete": "string",
})
const networkResource = new redpanda.Network("networkResource", {
cloudProvider: "string",
clusterType: "string",
region: "string",
resourceGroupId: "string",
cidrBlock: "string",
customerManagedResources: {
aws: {
dynamodbTable: {
arn: "string",
},
managementBucket: {
arn: "string",
},
privateSubnets: {
arns: ["string"],
},
vpc: {
arn: "string",
},
},
gcp: {
managementBucket: {
name: "string",
},
networkName: "string",
networkProjectId: "string",
},
},
name: "string",
timeouts: {
create: "string",
"delete": "string",
},
});
type: redpanda:Network
properties:
cidrBlock: string
cloudProvider: string
clusterType: string
customerManagedResources:
aws:
dynamodbTable:
arn: string
managementBucket:
arn: string
privateSubnets:
arns:
- string
vpc:
arn: string
gcp:
managementBucket:
name: string
networkName: string
networkProjectId: string
name: string
region: string
resourceGroupId: string
timeouts:
create: string
delete: 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
Provider string - The cloud provider to create the network in.
- Cluster
Type string - The type of cluster this network is associated with, can be one of dedicated or byoc
- Region string
- The region to create the network in.
- Resource
Group stringId - The ID of the resource group in which to create the network
- Cidr
Block string - The cidr_block to create the network in
- Customer
Managed NetworkResources Customer Managed Resources - Name string
- Name of the network
- Timeouts
Network
Timeouts
- Cloud
Provider string - The cloud provider to create the network in.
- Cluster
Type string - The type of cluster this network is associated with, can be one of dedicated or byoc
- Region string
- The region to create the network in.
- Resource
Group stringId - The ID of the resource group in which to create the network
- Cidr
Block string - The cidr_block to create the network in
- Customer
Managed NetworkResources Customer Managed Resources Args - Name string
- Name of the network
- Timeouts
Network
Timeouts Args
- cloud
Provider String - The cloud provider to create the network in.
- cluster
Type String - The type of cluster this network is associated with, can be one of dedicated or byoc
- region String
- The region to create the network in.
- resource
Group StringId - The ID of the resource group in which to create the network
- cidr
Block String - The cidr_block to create the network in
- customer
Managed NetworkResources Customer Managed Resources - name String
- Name of the network
- timeouts
Network
Timeouts
- cloud
Provider string - The cloud provider to create the network in.
- cluster
Type string - The type of cluster this network is associated with, can be one of dedicated or byoc
- region string
- The region to create the network in.
- resource
Group stringId - The ID of the resource group in which to create the network
- cidr
Block string - The cidr_block to create the network in
- customer
Managed NetworkResources Customer Managed Resources - name string
- Name of the network
- timeouts
Network
Timeouts
- cloud_
provider str - The cloud provider to create the network in.
- cluster_
type str - The type of cluster this network is associated with, can be one of dedicated or byoc
- region str
- The region to create the network in.
- resource_
group_ strid - The ID of the resource group in which to create the network
- cidr_
block str - The cidr_block to create the network in
- customer_
managed_ Networkresources Customer Managed Resources Args - name str
- Name of the network
- timeouts
Network
Timeouts Args
- cloud
Provider String - The cloud provider to create the network in.
- cluster
Type String - The type of cluster this network is associated with, can be one of dedicated or byoc
- region String
- The region to create the network in.
- resource
Group StringId - The ID of the resource group in which to create the network
- cidr
Block String - The cidr_block to create the network in
- customer
Managed Property MapResources - name String
- Name of the network
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the Network resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
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,
cidr_block: Optional[str] = None,
cloud_provider: Optional[str] = None,
cluster_type: Optional[str] = None,
customer_managed_resources: Optional[NetworkCustomerManagedResourcesArgs] = None,
name: Optional[str] = None,
region: Optional[str] = None,
resource_group_id: Optional[str] = None,
timeouts: Optional[NetworkTimeoutsArgs] = None) -> Network
func 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: redpanda: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.
- Cidr
Block string - The cidr_block to create the network in
- Cloud
Provider string - The cloud provider to create the network in.
- Cluster
Type string - The type of cluster this network is associated with, can be one of dedicated or byoc
- Customer
Managed NetworkResources Customer Managed Resources - Name string
- Name of the network
- Region string
- The region to create the network in.
- Resource
Group stringId - The ID of the resource group in which to create the network
- Timeouts
Network
Timeouts
- Cidr
Block string - The cidr_block to create the network in
- Cloud
Provider string - The cloud provider to create the network in.
- Cluster
Type string - The type of cluster this network is associated with, can be one of dedicated or byoc
- Customer
Managed NetworkResources Customer Managed Resources Args - Name string
- Name of the network
- Region string
- The region to create the network in.
- Resource
Group stringId - The ID of the resource group in which to create the network
- Timeouts
Network
Timeouts Args
- cidr
Block String - The cidr_block to create the network in
- cloud
Provider String - The cloud provider to create the network in.
- cluster
Type String - The type of cluster this network is associated with, can be one of dedicated or byoc
- customer
Managed NetworkResources Customer Managed Resources - name String
- Name of the network
- region String
- The region to create the network in.
- resource
Group StringId - The ID of the resource group in which to create the network
- timeouts
Network
Timeouts
- cidr
Block string - The cidr_block to create the network in
- cloud
Provider string - The cloud provider to create the network in.
- cluster
Type string - The type of cluster this network is associated with, can be one of dedicated or byoc
- customer
Managed NetworkResources Customer Managed Resources - name string
- Name of the network
- region string
- The region to create the network in.
- resource
Group stringId - The ID of the resource group in which to create the network
- timeouts
Network
Timeouts
- cidr_
block str - The cidr_block to create the network in
- cloud_
provider str - The cloud provider to create the network in.
- cluster_
type str - The type of cluster this network is associated with, can be one of dedicated or byoc
- customer_
managed_ Networkresources Customer Managed Resources Args - name str
- Name of the network
- region str
- The region to create the network in.
- resource_
group_ strid - The ID of the resource group in which to create the network
- timeouts
Network
Timeouts Args
- cidr
Block String - The cidr_block to create the network in
- cloud
Provider String - The cloud provider to create the network in.
- cluster
Type String - The type of cluster this network is associated with, can be one of dedicated or byoc
- customer
Managed Property MapResources - name String
- Name of the network
- region String
- The region to create the network in.
- resource
Group StringId - The ID of the resource group in which to create the network
- timeouts Property Map
Supporting Types
NetworkCustomerManagedResources, NetworkCustomerManagedResourcesArgs
NetworkCustomerManagedResourcesAws, NetworkCustomerManagedResourcesAwsArgs
NetworkCustomerManagedResourcesAwsDynamodbTable, NetworkCustomerManagedResourcesAwsDynamodbTableArgs
- Arn string
- AWS DynamoDB table identifier
- Arn string
- AWS DynamoDB table identifier
- arn String
- AWS DynamoDB table identifier
- arn string
- AWS DynamoDB table identifier
- arn str
- AWS DynamoDB table identifier
- arn String
- AWS DynamoDB table identifier
NetworkCustomerManagedResourcesAwsManagementBucket, NetworkCustomerManagedResourcesAwsManagementBucketArgs
- Arn string
- AWS storage bucket identifier
- Arn string
- AWS storage bucket identifier
- arn String
- AWS storage bucket identifier
- arn string
- AWS storage bucket identifier
- arn str
- AWS storage bucket identifier
- arn String
- AWS storage bucket identifier
NetworkCustomerManagedResourcesAwsPrivateSubnets, NetworkCustomerManagedResourcesAwsPrivateSubnetsArgs
- Arns List<string>
- AWS private subnet identifiers
- Arns []string
- AWS private subnet identifiers
- arns List<String>
- AWS private subnet identifiers
- arns string[]
- AWS private subnet identifiers
- arns Sequence[str]
- AWS private subnet identifiers
- arns List<String>
- AWS private subnet identifiers
NetworkCustomerManagedResourcesAwsVpc, NetworkCustomerManagedResourcesAwsVpcArgs
- Arn string
- AWS VPC identifier
- Arn string
- AWS VPC identifier
- arn String
- AWS VPC identifier
- arn string
- AWS VPC identifier
- arn str
- AWS VPC identifier
- arn String
- AWS VPC identifier
NetworkCustomerManagedResourcesGcp, NetworkCustomerManagedResourcesGcpArgs
- Management
Bucket NetworkCustomer Managed Resources Gcp Management Bucket - Network
Name string - Name of user-created network where the Redpanda cluster is deployed
- Network
Project stringId - GCP project ID where the network is created
- Management
Bucket NetworkCustomer Managed Resources Gcp Management Bucket - Network
Name string - Name of user-created network where the Redpanda cluster is deployed
- Network
Project stringId - GCP project ID where the network is created
- management
Bucket NetworkCustomer Managed Resources Gcp Management Bucket - network
Name String - Name of user-created network where the Redpanda cluster is deployed
- network
Project StringId - GCP project ID where the network is created
- management
Bucket NetworkCustomer Managed Resources Gcp Management Bucket - network
Name string - Name of user-created network where the Redpanda cluster is deployed
- network
Project stringId - GCP project ID where the network is created
- management_
bucket NetworkCustomer Managed Resources Gcp Management Bucket - network_
name str - Name of user-created network where the Redpanda cluster is deployed
- network_
project_ strid - GCP project ID where the network is created
- management
Bucket Property Map - network
Name String - Name of user-created network where the Redpanda cluster is deployed
- network
Project StringId - GCP project ID where the network is created
NetworkCustomerManagedResourcesGcpManagementBucket, NetworkCustomerManagedResourcesGcpManagementBucketArgs
- Name string
- GCP storage bucket name for storing the state of Redpanda cluster deployment
- Name string
- GCP storage bucket name for storing the state of Redpanda cluster deployment
- name String
- GCP storage bucket name for storing the state of Redpanda cluster deployment
- name string
- GCP storage bucket name for storing the state of Redpanda cluster deployment
- name str
- GCP storage bucket name for storing the state of Redpanda cluster deployment
- name String
- GCP storage bucket name for storing the state of Redpanda cluster deployment
NetworkTimeouts, NetworkTimeoutsArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
Import
$ pulumi import redpanda:index/network:Network example networkId
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- redpanda redpanda-data/terraform-provider-redpanda
- License
- Notes
- This Pulumi package is based on the
redpanda
Terraform Provider.