published on Thursday, May 21, 2026 by Pulumi
published on Thursday, May 21, 2026 by Pulumi
Provisions a BYOC custom cloud environment by handing Aiven the IAM role ARN created in the customer AWS account. Transitions the environment from draft to active so services can be deployed into it. Create this resource after the customer-side AWS infrastructure (IAM role, VPC, subnets, security groups, buckets) has been applied, and before aiven.ByocPermissions. terraform destroy on this resource is a state-only operation – it does not reverse provisioning. To tear down, destroy the underlying aiven.ByocAwsEntity.
This resource is in the beta stage and may change without notice. Set
the PROVIDER_AIVEN_ENABLE_BETA environment variable to use the resource.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const example = new aiven.ByocAwsProvision("example", {
organizationId: "org1a23f456789",
customCloudEnvironmentId: "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
awsIamRoleArn: "arn:aws:iam::012345678901:root",
});
import pulumi
import pulumi_aiven as aiven
example = aiven.ByocAwsProvision("example",
organization_id="org1a23f456789",
custom_cloud_environment_id="1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
aws_iam_role_arn="arn:aws:iam::012345678901:root")
package main
import (
"github.com/pulumi/pulumi-aiven/sdk/v6/go/aiven"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.NewByocAwsProvision(ctx, "example", &aiven.ByocAwsProvisionArgs{
OrganizationId: pulumi.String("org1a23f456789"),
CustomCloudEnvironmentId: pulumi.String("1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d"),
AwsIamRoleArn: pulumi.String("arn:aws:iam::012345678901:root"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() =>
{
var example = new Aiven.ByocAwsProvision("example", new()
{
OrganizationId = "org1a23f456789",
CustomCloudEnvironmentId = "1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d",
AwsIamRoleArn = "arn:aws:iam::012345678901:root",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.ByocAwsProvision;
import com.pulumi.aiven.ByocAwsProvisionArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 example = new ByocAwsProvision("example", ByocAwsProvisionArgs.builder()
.organizationId("org1a23f456789")
.customCloudEnvironmentId("1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d")
.awsIamRoleArn("arn:aws:iam::012345678901:root")
.build());
}
}
resources:
example:
type: aiven:ByocAwsProvision
properties:
organizationId: org1a23f456789
customCloudEnvironmentId: 1a2b3c4d-5e6f-7a8b-9c0d-1e2f3a4b5c6d
awsIamRoleArn: arn:aws:iam::012345678901:root
Example coming soon!
Create ByocAwsProvision Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ByocAwsProvision(name: string, args: ByocAwsProvisionArgs, opts?: CustomResourceOptions);@overload
def ByocAwsProvision(resource_name: str,
args: ByocAwsProvisionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ByocAwsProvision(resource_name: str,
opts: Optional[ResourceOptions] = None,
aws_iam_role_arn: Optional[str] = None,
custom_cloud_environment_id: Optional[str] = None,
organization_id: Optional[str] = None,
timeouts: Optional[ByocAwsProvisionTimeoutsArgs] = None)func NewByocAwsProvision(ctx *Context, name string, args ByocAwsProvisionArgs, opts ...ResourceOption) (*ByocAwsProvision, error)public ByocAwsProvision(string name, ByocAwsProvisionArgs args, CustomResourceOptions? opts = null)
public ByocAwsProvision(String name, ByocAwsProvisionArgs args)
public ByocAwsProvision(String name, ByocAwsProvisionArgs args, CustomResourceOptions options)
type: aiven:ByocAwsProvision
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "aiven_byocawsprovision" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ByocAwsProvisionArgs
- 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 ByocAwsProvisionArgs
- 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 ByocAwsProvisionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ByocAwsProvisionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ByocAwsProvisionArgs
- 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 byocAwsProvisionResource = new Aiven.ByocAwsProvision("byocAwsProvisionResource", new()
{
AwsIamRoleArn = "string",
CustomCloudEnvironmentId = "string",
OrganizationId = "string",
Timeouts = new Aiven.Inputs.ByocAwsProvisionTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
});
example, err := aiven.NewByocAwsProvision(ctx, "byocAwsProvisionResource", &aiven.ByocAwsProvisionArgs{
AwsIamRoleArn: pulumi.String("string"),
CustomCloudEnvironmentId: pulumi.String("string"),
OrganizationId: pulumi.String("string"),
Timeouts: &aiven.ByocAwsProvisionTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "aiven_byocawsprovision" "byocAwsProvisionResource" {
aws_iam_role_arn = "string"
custom_cloud_environment_id = "string"
organization_id = "string"
timeouts = {
create = "string"
delete = "string"
read = "string"
update = "string"
}
}
var byocAwsProvisionResource = new ByocAwsProvision("byocAwsProvisionResource", ByocAwsProvisionArgs.builder()
.awsIamRoleArn("string")
.customCloudEnvironmentId("string")
.organizationId("string")
.timeouts(ByocAwsProvisionTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.build());
byoc_aws_provision_resource = aiven.ByocAwsProvision("byocAwsProvisionResource",
aws_iam_role_arn="string",
custom_cloud_environment_id="string",
organization_id="string",
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
})
const byocAwsProvisionResource = new aiven.ByocAwsProvision("byocAwsProvisionResource", {
awsIamRoleArn: "string",
customCloudEnvironmentId: "string",
organizationId: "string",
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
});
type: aiven:ByocAwsProvision
properties:
awsIamRoleArn: string
customCloudEnvironmentId: string
organizationId: string
timeouts:
create: string
delete: string
read: string
update: string
ByocAwsProvision 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 ByocAwsProvision resource accepts the following input properties:
- Aws
Iam stringRole Arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - Custom
Cloud stringEnvironment Id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - Organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- Timeouts
Byoc
Aws Provision Timeouts
- Aws
Iam stringRole Arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - Custom
Cloud stringEnvironment Id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - Organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- Timeouts
Byoc
Aws Provision Timeouts Args
- aws_
iam_ stringrole_ arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - custom_
cloud_ stringenvironment_ id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - organization_
id string - ID of an organization. Changing this property forces recreation of the resource.
- timeouts object
- aws
Iam StringRole Arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - custom
Cloud StringEnvironment Id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - organization
Id String - ID of an organization. Changing this property forces recreation of the resource.
- timeouts
Byoc
Aws Provision Timeouts
- aws
Iam stringRole Arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - custom
Cloud stringEnvironment Id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- timeouts
Byoc
Aws Provision Timeouts
- aws_
iam_ strrole_ arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - custom_
cloud_ strenvironment_ id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - organization_
id str - ID of an organization. Changing this property forces recreation of the resource.
- timeouts
Byoc
Aws Provision Timeouts Args
- aws
Iam StringRole Arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - custom
Cloud StringEnvironment Id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - organization
Id String - ID of an organization. Changing this property forces recreation of the resource.
- timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the ByocAwsProvision resource produces the following output properties:
- Aiven
Aws stringAccount Principal - Entity that assumes the IAM role for controlling the BYOC account.
- Aiven
Aws stringAssume Role External Id - External ID for assuming the IAM role for controlling the BYOC account.
- Id string
- The provider-assigned unique ID for this managed resource.
- Aiven
Aws stringAccount Principal - Entity that assumes the IAM role for controlling the BYOC account.
- Aiven
Aws stringAssume Role External Id - External ID for assuming the IAM role for controlling the BYOC account.
- Id string
- The provider-assigned unique ID for this managed resource.
- aiven_
aws_ stringaccount_ principal - Entity that assumes the IAM role for controlling the BYOC account.
- aiven_
aws_ stringassume_ role_ external_ id - External ID for assuming the IAM role for controlling the BYOC account.
- id string
- The provider-assigned unique ID for this managed resource.
- aiven
Aws StringAccount Principal - Entity that assumes the IAM role for controlling the BYOC account.
- aiven
Aws StringAssume Role External Id - External ID for assuming the IAM role for controlling the BYOC account.
- id String
- The provider-assigned unique ID for this managed resource.
- aiven
Aws stringAccount Principal - Entity that assumes the IAM role for controlling the BYOC account.
- aiven
Aws stringAssume Role External Id - External ID for assuming the IAM role for controlling the BYOC account.
- id string
- The provider-assigned unique ID for this managed resource.
- aiven_
aws_ straccount_ principal - Entity that assumes the IAM role for controlling the BYOC account.
- aiven_
aws_ strassume_ role_ external_ id - External ID for assuming the IAM role for controlling the BYOC account.
- id str
- The provider-assigned unique ID for this managed resource.
- aiven
Aws StringAccount Principal - Entity that assumes the IAM role for controlling the BYOC account.
- aiven
Aws StringAssume Role External Id - External ID for assuming the IAM role for controlling the BYOC account.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ByocAwsProvision Resource
Get an existing ByocAwsProvision 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?: ByocAwsProvisionState, opts?: CustomResourceOptions): ByocAwsProvision@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
aiven_aws_account_principal: Optional[str] = None,
aiven_aws_assume_role_external_id: Optional[str] = None,
aws_iam_role_arn: Optional[str] = None,
custom_cloud_environment_id: Optional[str] = None,
organization_id: Optional[str] = None,
timeouts: Optional[ByocAwsProvisionTimeoutsArgs] = None) -> ByocAwsProvisionfunc GetByocAwsProvision(ctx *Context, name string, id IDInput, state *ByocAwsProvisionState, opts ...ResourceOption) (*ByocAwsProvision, error)public static ByocAwsProvision Get(string name, Input<string> id, ByocAwsProvisionState? state, CustomResourceOptions? opts = null)public static ByocAwsProvision get(String name, Output<String> id, ByocAwsProvisionState state, CustomResourceOptions options)resources: _: type: aiven:ByocAwsProvision get: id: ${id}import {
to = aiven_byocawsprovision.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.
- Aiven
Aws stringAccount Principal - Entity that assumes the IAM role for controlling the BYOC account.
- Aiven
Aws stringAssume Role External Id - External ID for assuming the IAM role for controlling the BYOC account.
- Aws
Iam stringRole Arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - Custom
Cloud stringEnvironment Id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - Organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- Timeouts
Byoc
Aws Provision Timeouts
- Aiven
Aws stringAccount Principal - Entity that assumes the IAM role for controlling the BYOC account.
- Aiven
Aws stringAssume Role External Id - External ID for assuming the IAM role for controlling the BYOC account.
- Aws
Iam stringRole Arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - Custom
Cloud stringEnvironment Id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - Organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- Timeouts
Byoc
Aws Provision Timeouts Args
- aiven_
aws_ stringaccount_ principal - Entity that assumes the IAM role for controlling the BYOC account.
- aiven_
aws_ stringassume_ role_ external_ id - External ID for assuming the IAM role for controlling the BYOC account.
- aws_
iam_ stringrole_ arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - custom_
cloud_ stringenvironment_ id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - organization_
id string - ID of an organization. Changing this property forces recreation of the resource.
- timeouts object
- aiven
Aws StringAccount Principal - Entity that assumes the IAM role for controlling the BYOC account.
- aiven
Aws StringAssume Role External Id - External ID for assuming the IAM role for controlling the BYOC account.
- aws
Iam StringRole Arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - custom
Cloud StringEnvironment Id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - organization
Id String - ID of an organization. Changing this property forces recreation of the resource.
- timeouts
Byoc
Aws Provision Timeouts
- aiven
Aws stringAccount Principal - Entity that assumes the IAM role for controlling the BYOC account.
- aiven
Aws stringAssume Role External Id - External ID for assuming the IAM role for controlling the BYOC account.
- aws
Iam stringRole Arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - custom
Cloud stringEnvironment Id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- timeouts
Byoc
Aws Provision Timeouts
- aiven_
aws_ straccount_ principal - Entity that assumes the IAM role for controlling the BYOC account.
- aiven_
aws_ strassume_ role_ external_ id - External ID for assuming the IAM role for controlling the BYOC account.
- aws_
iam_ strrole_ arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - custom_
cloud_ strenvironment_ id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - organization_
id str - ID of an organization. Changing this property forces recreation of the resource.
- timeouts
Byoc
Aws Provision Timeouts Args
- aiven
Aws StringAccount Principal - Entity that assumes the IAM role for controlling the BYOC account.
- aiven
Aws StringAssume Role External Id - External ID for assuming the IAM role for controlling the BYOC account.
- aws
Iam StringRole Arn - Amazon Resource Name. Maximum length:
2048. Changing this property forces recreation of the resource. - custom
Cloud StringEnvironment Id - ID of a custom cloud environment. Length must be exactly
36. Changing this property forces recreation of the resource. - organization
Id String - ID of an organization. Changing this property forces recreation of the resource.
- timeouts Property Map
Supporting Types
ByocAwsProvisionTimeouts, ByocAwsProvisionTimeoutsArgs
- 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.
- Read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
- 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.
- Read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
- 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.
- read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
- 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.
- read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
- 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.
- read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
- 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.
- read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
- 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.
- read 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). Read operations occur during any refresh or planning operation when refresh is enabled.
- 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).
Import
$ pulumi import aiven:index/byocAwsProvision:ByocAwsProvision example ORGANIZATION_ID/CUSTOM_CLOUD_ENVIRONMENT_ID
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Aiven pulumi/pulumi-aiven
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aivenTerraform Provider.
published on Thursday, May 21, 2026 by Pulumi