published on Friday, May 22, 2026 by Pulumi
published on Friday, May 22, 2026 by Pulumi
Creates and manages an Aiven Upgrade Pipeline step between source and destination services. This feature is in the limited availability stage and may change without notice. To enable this feature, contact the sales team. Once it’s enabled, 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.UpgradeStep("example", {
organizationId: "org1a23f456789",
destinationProjectName: "prod-project",
destinationServiceName: "pg-prod",
sourceProjectName: "dev-project",
sourceServiceName: "pg-dev",
autoValidationDelayDays: 1,
});
import pulumi
import pulumi_aiven as aiven
example = aiven.UpgradeStep("example",
organization_id="org1a23f456789",
destination_project_name="prod-project",
destination_service_name="pg-prod",
source_project_name="dev-project",
source_service_name="pg-dev",
auto_validation_delay_days=1)
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.NewUpgradeStep(ctx, "example", &aiven.UpgradeStepArgs{
OrganizationId: pulumi.String("org1a23f456789"),
DestinationProjectName: pulumi.String("prod-project"),
DestinationServiceName: pulumi.String("pg-prod"),
SourceProjectName: pulumi.String("dev-project"),
SourceServiceName: pulumi.String("pg-dev"),
AutoValidationDelayDays: pulumi.Int(1),
})
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.UpgradeStep("example", new()
{
OrganizationId = "org1a23f456789",
DestinationProjectName = "prod-project",
DestinationServiceName = "pg-prod",
SourceProjectName = "dev-project",
SourceServiceName = "pg-dev",
AutoValidationDelayDays = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.UpgradeStep;
import com.pulumi.aiven.UpgradeStepArgs;
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 UpgradeStep("example", UpgradeStepArgs.builder()
.organizationId("org1a23f456789")
.destinationProjectName("prod-project")
.destinationServiceName("pg-prod")
.sourceProjectName("dev-project")
.sourceServiceName("pg-dev")
.autoValidationDelayDays(1)
.build());
}
}
resources:
example:
type: aiven:UpgradeStep
properties:
organizationId: org1a23f456789
destinationProjectName: prod-project
destinationServiceName: pg-prod
sourceProjectName: dev-project
sourceServiceName: pg-dev
autoValidationDelayDays: 1 # /* COMPUTED FIELDS
# step_id = "550e8400-e29b-41d4-a716-446655440000"
# */
pulumi {
required_providers {
aiven = {
source = "pulumi/aiven"
}
}
}
resource "aiven_upgradestep" "example" {
organization_id = "org1a23f456789"
destination_project_name = "prod-project"
destination_service_name = "pg-prod"
source_project_name = "dev-project"
source_service_name = "pg-dev"
auto_validation_delay_days = 1
}
Create UpgradeStep Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new UpgradeStep(name: string, args: UpgradeStepArgs, opts?: CustomResourceOptions);@overload
def UpgradeStep(resource_name: str,
args: UpgradeStepArgs,
opts: Optional[ResourceOptions] = None)
@overload
def UpgradeStep(resource_name: str,
opts: Optional[ResourceOptions] = None,
destination_project_name: Optional[str] = None,
destination_service_name: Optional[str] = None,
organization_id: Optional[str] = None,
source_project_name: Optional[str] = None,
source_service_name: Optional[str] = None,
auto_validation_delay_days: Optional[int] = None,
timeouts: Optional[UpgradeStepTimeoutsArgs] = None)func NewUpgradeStep(ctx *Context, name string, args UpgradeStepArgs, opts ...ResourceOption) (*UpgradeStep, error)public UpgradeStep(string name, UpgradeStepArgs args, CustomResourceOptions? opts = null)
public UpgradeStep(String name, UpgradeStepArgs args)
public UpgradeStep(String name, UpgradeStepArgs args, CustomResourceOptions options)
type: aiven:UpgradeStep
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "aiven_upgradestep" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args UpgradeStepArgs
- 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 UpgradeStepArgs
- 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 UpgradeStepArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args UpgradeStepArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args UpgradeStepArgs
- 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 upgradeStepResource = new Aiven.UpgradeStep("upgradeStepResource", new()
{
DestinationProjectName = "string",
DestinationServiceName = "string",
OrganizationId = "string",
SourceProjectName = "string",
SourceServiceName = "string",
AutoValidationDelayDays = 0,
Timeouts = new Aiven.Inputs.UpgradeStepTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
});
example, err := aiven.NewUpgradeStep(ctx, "upgradeStepResource", &aiven.UpgradeStepArgs{
DestinationProjectName: pulumi.String("string"),
DestinationServiceName: pulumi.String("string"),
OrganizationId: pulumi.String("string"),
SourceProjectName: pulumi.String("string"),
SourceServiceName: pulumi.String("string"),
AutoValidationDelayDays: pulumi.Int(0),
Timeouts: &aiven.UpgradeStepTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "aiven_upgradestep" "upgradeStepResource" {
destination_project_name = "string"
destination_service_name = "string"
organization_id = "string"
source_project_name = "string"
source_service_name = "string"
auto_validation_delay_days = 0
timeouts = {
create = "string"
delete = "string"
read = "string"
update = "string"
}
}
var upgradeStepResource = new UpgradeStep("upgradeStepResource", UpgradeStepArgs.builder()
.destinationProjectName("string")
.destinationServiceName("string")
.organizationId("string")
.sourceProjectName("string")
.sourceServiceName("string")
.autoValidationDelayDays(0)
.timeouts(UpgradeStepTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.build());
upgrade_step_resource = aiven.UpgradeStep("upgradeStepResource",
destination_project_name="string",
destination_service_name="string",
organization_id="string",
source_project_name="string",
source_service_name="string",
auto_validation_delay_days=0,
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
})
const upgradeStepResource = new aiven.UpgradeStep("upgradeStepResource", {
destinationProjectName: "string",
destinationServiceName: "string",
organizationId: "string",
sourceProjectName: "string",
sourceServiceName: "string",
autoValidationDelayDays: 0,
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
});
type: aiven:UpgradeStep
properties:
autoValidationDelayDays: 0
destinationProjectName: string
destinationServiceName: string
organizationId: string
sourceProjectName: string
sourceServiceName: string
timeouts:
create: string
delete: string
read: string
update: string
UpgradeStep 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 UpgradeStep resource accepts the following input properties:
- Destination
Project stringName - Destination project name. Changing this property forces recreation of the resource.
- Destination
Service stringName - Destination service name. Changing this property forces recreation of the resource.
- Organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- Source
Project stringName - Source project name. Changing this property forces recreation of the resource.
- Source
Service stringName - Source service name. Changing this property forces recreation of the resource.
- Auto
Validation intDelay Days - Days before automatic validation (defaults to 7). Minimum value:
1. - Timeouts
Upgrade
Step Timeouts
- Destination
Project stringName - Destination project name. Changing this property forces recreation of the resource.
- Destination
Service stringName - Destination service name. Changing this property forces recreation of the resource.
- Organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- Source
Project stringName - Source project name. Changing this property forces recreation of the resource.
- Source
Service stringName - Source service name. Changing this property forces recreation of the resource.
- Auto
Validation intDelay Days - Days before automatic validation (defaults to 7). Minimum value:
1. - Timeouts
Upgrade
Step Timeouts Args
- destination_
project_ stringname - Destination project name. Changing this property forces recreation of the resource.
- destination_
service_ stringname - Destination service name. Changing this property forces recreation of the resource.
- organization_
id string - ID of an organization. Changing this property forces recreation of the resource.
- source_
project_ stringname - Source project name. Changing this property forces recreation of the resource.
- source_
service_ stringname - Source service name. Changing this property forces recreation of the resource.
- auto_
validation_ numberdelay_ days - Days before automatic validation (defaults to 7). Minimum value:
1. - timeouts object
- destination
Project StringName - Destination project name. Changing this property forces recreation of the resource.
- destination
Service StringName - Destination service name. Changing this property forces recreation of the resource.
- organization
Id String - ID of an organization. Changing this property forces recreation of the resource.
- source
Project StringName - Source project name. Changing this property forces recreation of the resource.
- source
Service StringName - Source service name. Changing this property forces recreation of the resource.
- auto
Validation IntegerDelay Days - Days before automatic validation (defaults to 7). Minimum value:
1. - timeouts
Upgrade
Step Timeouts
- destination
Project stringName - Destination project name. Changing this property forces recreation of the resource.
- destination
Service stringName - Destination service name. Changing this property forces recreation of the resource.
- organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- source
Project stringName - Source project name. Changing this property forces recreation of the resource.
- source
Service stringName - Source service name. Changing this property forces recreation of the resource.
- auto
Validation numberDelay Days - Days before automatic validation (defaults to 7). Minimum value:
1. - timeouts
Upgrade
Step Timeouts
- destination_
project_ strname - Destination project name. Changing this property forces recreation of the resource.
- destination_
service_ strname - Destination service name. Changing this property forces recreation of the resource.
- organization_
id str - ID of an organization. Changing this property forces recreation of the resource.
- source_
project_ strname - Source project name. Changing this property forces recreation of the resource.
- source_
service_ strname - Source service name. Changing this property forces recreation of the resource.
- auto_
validation_ intdelay_ days - Days before automatic validation (defaults to 7). Minimum value:
1. - timeouts
Upgrade
Step Timeouts Args
- destination
Project StringName - Destination project name. Changing this property forces recreation of the resource.
- destination
Service StringName - Destination service name. Changing this property forces recreation of the resource.
- organization
Id String - ID of an organization. Changing this property forces recreation of the resource.
- source
Project StringName - Source project name. Changing this property forces recreation of the resource.
- source
Service StringName - Source service name. Changing this property forces recreation of the resource.
- auto
Validation NumberDelay Days - Days before automatic validation (defaults to 7). Minimum value:
1. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the UpgradeStep resource produces the following output properties:
Look up Existing UpgradeStep Resource
Get an existing UpgradeStep 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?: UpgradeStepState, opts?: CustomResourceOptions): UpgradeStep@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
auto_validation_delay_days: Optional[int] = None,
destination_project_name: Optional[str] = None,
destination_service_name: Optional[str] = None,
organization_id: Optional[str] = None,
source_project_name: Optional[str] = None,
source_service_name: Optional[str] = None,
step_id: Optional[str] = None,
timeouts: Optional[UpgradeStepTimeoutsArgs] = None) -> UpgradeStepfunc GetUpgradeStep(ctx *Context, name string, id IDInput, state *UpgradeStepState, opts ...ResourceOption) (*UpgradeStep, error)public static UpgradeStep Get(string name, Input<string> id, UpgradeStepState? state, CustomResourceOptions? opts = null)public static UpgradeStep get(String name, Output<String> id, UpgradeStepState state, CustomResourceOptions options)resources: _: type: aiven:UpgradeStep get: id: ${id}import {
to = aiven_upgradestep.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.
- Auto
Validation intDelay Days - Days before automatic validation (defaults to 7). Minimum value:
1. - Destination
Project stringName - Destination project name. Changing this property forces recreation of the resource.
- Destination
Service stringName - Destination service name. Changing this property forces recreation of the resource.
- Organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- Source
Project stringName - Source project name. Changing this property forces recreation of the resource.
- Source
Service stringName - Source service name. Changing this property forces recreation of the resource.
- Step
Id string - Upgrade step ID. The possible value is
550e8400-e29b-41d4-a716-446655440000. - Timeouts
Upgrade
Step Timeouts
- Auto
Validation intDelay Days - Days before automatic validation (defaults to 7). Minimum value:
1. - Destination
Project stringName - Destination project name. Changing this property forces recreation of the resource.
- Destination
Service stringName - Destination service name. Changing this property forces recreation of the resource.
- Organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- Source
Project stringName - Source project name. Changing this property forces recreation of the resource.
- Source
Service stringName - Source service name. Changing this property forces recreation of the resource.
- Step
Id string - Upgrade step ID. The possible value is
550e8400-e29b-41d4-a716-446655440000. - Timeouts
Upgrade
Step Timeouts Args
- auto_
validation_ numberdelay_ days - Days before automatic validation (defaults to 7). Minimum value:
1. - destination_
project_ stringname - Destination project name. Changing this property forces recreation of the resource.
- destination_
service_ stringname - Destination service name. Changing this property forces recreation of the resource.
- organization_
id string - ID of an organization. Changing this property forces recreation of the resource.
- source_
project_ stringname - Source project name. Changing this property forces recreation of the resource.
- source_
service_ stringname - Source service name. Changing this property forces recreation of the resource.
- step_
id string - Upgrade step ID. The possible value is
550e8400-e29b-41d4-a716-446655440000. - timeouts object
- auto
Validation IntegerDelay Days - Days before automatic validation (defaults to 7). Minimum value:
1. - destination
Project StringName - Destination project name. Changing this property forces recreation of the resource.
- destination
Service StringName - Destination service name. Changing this property forces recreation of the resource.
- organization
Id String - ID of an organization. Changing this property forces recreation of the resource.
- source
Project StringName - Source project name. Changing this property forces recreation of the resource.
- source
Service StringName - Source service name. Changing this property forces recreation of the resource.
- step
Id String - Upgrade step ID. The possible value is
550e8400-e29b-41d4-a716-446655440000. - timeouts
Upgrade
Step Timeouts
- auto
Validation numberDelay Days - Days before automatic validation (defaults to 7). Minimum value:
1. - destination
Project stringName - Destination project name. Changing this property forces recreation of the resource.
- destination
Service stringName - Destination service name. Changing this property forces recreation of the resource.
- organization
Id string - ID of an organization. Changing this property forces recreation of the resource.
- source
Project stringName - Source project name. Changing this property forces recreation of the resource.
- source
Service stringName - Source service name. Changing this property forces recreation of the resource.
- step
Id string - Upgrade step ID. The possible value is
550e8400-e29b-41d4-a716-446655440000. - timeouts
Upgrade
Step Timeouts
- auto_
validation_ intdelay_ days - Days before automatic validation (defaults to 7). Minimum value:
1. - destination_
project_ strname - Destination project name. Changing this property forces recreation of the resource.
- destination_
service_ strname - Destination service name. Changing this property forces recreation of the resource.
- organization_
id str - ID of an organization. Changing this property forces recreation of the resource.
- source_
project_ strname - Source project name. Changing this property forces recreation of the resource.
- source_
service_ strname - Source service name. Changing this property forces recreation of the resource.
- step_
id str - Upgrade step ID. The possible value is
550e8400-e29b-41d4-a716-446655440000. - timeouts
Upgrade
Step Timeouts Args
- auto
Validation NumberDelay Days - Days before automatic validation (defaults to 7). Minimum value:
1. - destination
Project StringName - Destination project name. Changing this property forces recreation of the resource.
- destination
Service StringName - Destination service name. Changing this property forces recreation of the resource.
- organization
Id String - ID of an organization. Changing this property forces recreation of the resource.
- source
Project StringName - Source project name. Changing this property forces recreation of the resource.
- source
Service StringName - Source service name. Changing this property forces recreation of the resource.
- step
Id String - Upgrade step ID. The possible value is
550e8400-e29b-41d4-a716-446655440000. - timeouts Property Map
Supporting Types
UpgradeStepTimeouts, UpgradeStepTimeoutsArgs
- 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/upgradeStep:UpgradeStep example ORGANIZATION_ID/STEP_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 Friday, May 22, 2026 by Pulumi