published on Thursday, May 21, 2026 by Pulumi
published on Thursday, May 21, 2026 by Pulumi
Creates and manages an Aiven for Apache Kafka® Schema Registry ACL entry. If this resource is missing (for example, after a service power off), it’s removed from the state and a new create plan is generated.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const example = new aiven.KafkaSchemaRegistryAcl("example", {
project: "my-project",
serviceName: "my-kafka",
permission: "schema_registry_read",
resource: "Config:",
username: "admin*",
});
import pulumi
import pulumi_aiven as aiven
example = aiven.KafkaSchemaRegistryAcl("example",
project="my-project",
service_name="my-kafka",
permission="schema_registry_read",
resource="Config:",
username="admin*")
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.NewKafkaSchemaRegistryAcl(ctx, "example", &aiven.KafkaSchemaRegistryAclArgs{
Project: pulumi.String("my-project"),
ServiceName: pulumi.String("my-kafka"),
Permission: pulumi.String("schema_registry_read"),
Resource: pulumi.String("Config:"),
Username: pulumi.String("admin*"),
})
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.KafkaSchemaRegistryAcl("example", new()
{
Project = "my-project",
ServiceName = "my-kafka",
Permission = "schema_registry_read",
Resource = "Config:",
Username = "admin*",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.KafkaSchemaRegistryAcl;
import com.pulumi.aiven.KafkaSchemaRegistryAclArgs;
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 KafkaSchemaRegistryAcl("example", KafkaSchemaRegistryAclArgs.builder()
.project("my-project")
.serviceName("my-kafka")
.permission("schema_registry_read")
.resource("Config:")
.username("admin*")
.build());
}
}
resources:
example:
type: aiven:KafkaSchemaRegistryAcl
properties:
project: my-project
serviceName: my-kafka
permission: schema_registry_read
resource: 'Config:'
username: admin*
Example coming soon!
Create KafkaSchemaRegistryAcl Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KafkaSchemaRegistryAcl(name: string, args: KafkaSchemaRegistryAclArgs, opts?: CustomResourceOptions);@overload
def KafkaSchemaRegistryAcl(resource_name: str,
args: KafkaSchemaRegistryAclArgs,
opts: Optional[ResourceOptions] = None)
@overload
def KafkaSchemaRegistryAcl(resource_name: str,
opts: Optional[ResourceOptions] = None,
permission: Optional[str] = None,
project: Optional[str] = None,
resource: Optional[str] = None,
service_name: Optional[str] = None,
username: Optional[str] = None,
timeouts: Optional[KafkaSchemaRegistryAclTimeoutsArgs] = None)func NewKafkaSchemaRegistryAcl(ctx *Context, name string, args KafkaSchemaRegistryAclArgs, opts ...ResourceOption) (*KafkaSchemaRegistryAcl, error)public KafkaSchemaRegistryAcl(string name, KafkaSchemaRegistryAclArgs args, CustomResourceOptions? opts = null)
public KafkaSchemaRegistryAcl(String name, KafkaSchemaRegistryAclArgs args)
public KafkaSchemaRegistryAcl(String name, KafkaSchemaRegistryAclArgs args, CustomResourceOptions options)
type: aiven:KafkaSchemaRegistryAcl
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "aiven_kafkaschemaregistryacl" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args KafkaSchemaRegistryAclArgs
- 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 KafkaSchemaRegistryAclArgs
- 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 KafkaSchemaRegistryAclArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KafkaSchemaRegistryAclArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KafkaSchemaRegistryAclArgs
- 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 kafkaSchemaRegistryAclResource = new Aiven.KafkaSchemaRegistryAcl("kafkaSchemaRegistryAclResource", new()
{
Permission = "string",
Project = "string",
Resource = "string",
ServiceName = "string",
Username = "string",
Timeouts = new Aiven.Inputs.KafkaSchemaRegistryAclTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
});
example, err := aiven.NewKafkaSchemaRegistryAcl(ctx, "kafkaSchemaRegistryAclResource", &aiven.KafkaSchemaRegistryAclArgs{
Permission: pulumi.String("string"),
Project: pulumi.String("string"),
Resource: pulumi.String("string"),
ServiceName: pulumi.String("string"),
Username: pulumi.String("string"),
Timeouts: &aiven.KafkaSchemaRegistryAclTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
})
resource "aiven_kafkaschemaregistryacl" "kafkaSchemaRegistryAclResource" {
permission = "string"
project = "string"
resource = "string"
service_name = "string"
username = "string"
timeouts = {
create = "string"
delete = "string"
read = "string"
update = "string"
}
}
var kafkaSchemaRegistryAclResource = new KafkaSchemaRegistryAcl("kafkaSchemaRegistryAclResource", KafkaSchemaRegistryAclArgs.builder()
.permission("string")
.project("string")
.resource("string")
.serviceName("string")
.username("string")
.timeouts(KafkaSchemaRegistryAclTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.build());
kafka_schema_registry_acl_resource = aiven.KafkaSchemaRegistryAcl("kafkaSchemaRegistryAclResource",
permission="string",
project="string",
resource="string",
service_name="string",
username="string",
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
})
const kafkaSchemaRegistryAclResource = new aiven.KafkaSchemaRegistryAcl("kafkaSchemaRegistryAclResource", {
permission: "string",
project: "string",
resource: "string",
serviceName: "string",
username: "string",
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
});
type: aiven:KafkaSchemaRegistryAcl
properties:
permission: string
project: string
resource: string
serviceName: string
timeouts:
create: string
delete: string
read: string
update: string
username: string
KafkaSchemaRegistryAcl 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 KafkaSchemaRegistryAcl resource accepts the following input properties:
- Permission string
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - Project string
- Project name. Changing this property forces recreation of the resource.
- Resource string
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - Service
Name string - Service name. Changing this property forces recreation of the resource.
- Username string
- Username. Length must be between
1and64. Changing this property forces recreation of the resource. - Timeouts
Kafka
Schema Registry Acl Timeouts
- Permission string
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - Project string
- Project name. Changing this property forces recreation of the resource.
- Resource string
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - Service
Name string - Service name. Changing this property forces recreation of the resource.
- Username string
- Username. Length must be between
1and64. Changing this property forces recreation of the resource. - Timeouts
Kafka
Schema Registry Acl Timeouts Args
- permission string
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - project string
- Project name. Changing this property forces recreation of the resource.
- resource string
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - service_
name string - Service name. Changing this property forces recreation of the resource.
- username string
- Username. Length must be between
1and64. Changing this property forces recreation of the resource. - timeouts object
- permission String
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - project String
- Project name. Changing this property forces recreation of the resource.
- resource String
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - service
Name String - Service name. Changing this property forces recreation of the resource.
- username String
- Username. Length must be between
1and64. Changing this property forces recreation of the resource. - timeouts
Kafka
Schema Registry Acl Timeouts
- permission string
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - project string
- Project name. Changing this property forces recreation of the resource.
- resource string
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - service
Name string - Service name. Changing this property forces recreation of the resource.
- username string
- Username. Length must be between
1and64. Changing this property forces recreation of the resource. - timeouts
Kafka
Schema Registry Acl Timeouts
- permission str
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - project str
- Project name. Changing this property forces recreation of the resource.
- resource str
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - service_
name str - Service name. Changing this property forces recreation of the resource.
- username str
- Username. Length must be between
1and64. Changing this property forces recreation of the resource. - timeouts
Kafka
Schema Registry Acl Timeouts Args
- permission String
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - project String
- Project name. Changing this property forces recreation of the resource.
- resource String
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - service
Name String - Service name. Changing this property forces recreation of the resource.
- username String
- Username. Length must be between
1and64. Changing this property forces recreation of the resource. - timeouts Property Map
Outputs
All input properties are implicitly available as output properties. Additionally, the KafkaSchemaRegistryAcl resource produces the following output properties:
Look up Existing KafkaSchemaRegistryAcl Resource
Get an existing KafkaSchemaRegistryAcl 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?: KafkaSchemaRegistryAclState, opts?: CustomResourceOptions): KafkaSchemaRegistryAcl@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
acl_id: Optional[str] = None,
permission: Optional[str] = None,
project: Optional[str] = None,
resource: Optional[str] = None,
service_name: Optional[str] = None,
timeouts: Optional[KafkaSchemaRegistryAclTimeoutsArgs] = None,
username: Optional[str] = None) -> KafkaSchemaRegistryAclfunc GetKafkaSchemaRegistryAcl(ctx *Context, name string, id IDInput, state *KafkaSchemaRegistryAclState, opts ...ResourceOption) (*KafkaSchemaRegistryAcl, error)public static KafkaSchemaRegistryAcl Get(string name, Input<string> id, KafkaSchemaRegistryAclState? state, CustomResourceOptions? opts = null)public static KafkaSchemaRegistryAcl get(String name, Output<String> id, KafkaSchemaRegistryAclState state, CustomResourceOptions options)resources: _: type: aiven:KafkaSchemaRegistryAcl get: id: ${id}import {
to = aiven_kafkaschemaregistryacl.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.
- Acl
Id string - Kafka Schema Registry ACL ID.
- Permission string
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - Project string
- Project name. Changing this property forces recreation of the resource.
- Resource string
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - Service
Name string - Service name. Changing this property forces recreation of the resource.
- Timeouts
Kafka
Schema Registry Acl Timeouts - Username string
- Username. Length must be between
1and64. Changing this property forces recreation of the resource.
- Acl
Id string - Kafka Schema Registry ACL ID.
- Permission string
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - Project string
- Project name. Changing this property forces recreation of the resource.
- Resource string
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - Service
Name string - Service name. Changing this property forces recreation of the resource.
- Timeouts
Kafka
Schema Registry Acl Timeouts Args - Username string
- Username. Length must be between
1and64. Changing this property forces recreation of the resource.
- acl_
id string - Kafka Schema Registry ACL ID.
- permission string
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - project string
- Project name. Changing this property forces recreation of the resource.
- resource string
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - service_
name string - Service name. Changing this property forces recreation of the resource.
- timeouts object
- username string
- Username. Length must be between
1and64. Changing this property forces recreation of the resource.
- acl
Id String - Kafka Schema Registry ACL ID.
- permission String
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - project String
- Project name. Changing this property forces recreation of the resource.
- resource String
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - service
Name String - Service name. Changing this property forces recreation of the resource.
- timeouts
Kafka
Schema Registry Acl Timeouts - username String
- Username. Length must be between
1and64. Changing this property forces recreation of the resource.
- acl
Id string - Kafka Schema Registry ACL ID.
- permission string
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - project string
- Project name. Changing this property forces recreation of the resource.
- resource string
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - service
Name string - Service name. Changing this property forces recreation of the resource.
- timeouts
Kafka
Schema Registry Acl Timeouts - username string
- Username. Length must be between
1and64. Changing this property forces recreation of the resource.
- acl_
id str - Kafka Schema Registry ACL ID.
- permission str
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - project str
- Project name. Changing this property forces recreation of the resource.
- resource str
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - service_
name str - Service name. Changing this property forces recreation of the resource.
- timeouts
Kafka
Schema Registry Acl Timeouts Args - username str
- Username. Length must be between
1and64. Changing this property forces recreation of the resource.
- acl
Id String - Kafka Schema Registry ACL ID.
- permission String
- ACL entry for Schema Registry. The possible values are
schemaRegistryReadandschemaRegistryWrite. Changing this property forces recreation of the resource. - project String
- Project name. Changing this property forces recreation of the resource.
- resource String
- Schema Registry ACL entry resource name pattern. Length must be between
1and249. Changing this property forces recreation of the resource. - service
Name String - Service name. Changing this property forces recreation of the resource.
- timeouts Property Map
- username String
- Username. Length must be between
1and64. Changing this property forces recreation of the resource.
Supporting Types
KafkaSchemaRegistryAclTimeouts, KafkaSchemaRegistryAclTimeoutsArgs
- 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).
- Default string
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- 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).
- Default string
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- 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).
- default string
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- 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).
- default_ String
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- 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).
- default string
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- 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).
- default str
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- 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).
- default String
- Timeout for all operations. Deprecated, use operation-specific timeouts instead.
- 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/kafkaSchemaRegistryAcl:KafkaSchemaRegistryAcl example PROJECT/SERVICE_NAME/ACL_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