1. Packages
  2. Aiven Provider
  3. API Docs
  4. KafkaNativeAcl
Aiven v6.36.0 published on Thursday, Mar 13, 2025 by Pulumi

aiven.KafkaNativeAcl

Explore with Pulumi AI

aiven logo
Aiven v6.36.0 published on Thursday, Mar 13, 2025 by Pulumi

    Creates and manages Kafka-native access control lists (ACLs) for an Aiven for Apache Kafka® service. ACLs control access to Kafka topics, consumer groups, clusters, and Schema Registry.

    Kafka-native ACLs provide advanced resource-level access control with fine-grained permissions, including ALLOW and DENY rules. For simplified topic-level control you can use Aiven ACLs.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aiven from "@pulumi/aiven";
    
    const exampleAcl = new aiven.KafkaNativeAcl("example_acl", {
        project: exampleProject.project,
        serviceName: exampleKafka.serviceName,
        resourceType: "Topic",
        resourceName: "example-topic",
        principal: "User:example-user",
        operation: "Read",
        patternType: "LITERAL",
        permissionType: "ALLOW",
        host: "198.51.100.0",
    });
    
    import pulumi
    import pulumi_aiven as aiven
    
    example_acl = aiven.KafkaNativeAcl("example_acl",
        project=example_project["project"],
        service_name=example_kafka["serviceName"],
        resource_type="Topic",
        resource_name_="example-topic",
        principal="User:example-user",
        operation="Read",
        pattern_type="LITERAL",
        permission_type="ALLOW",
        host="198.51.100.0")
    
    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.NewKafkaNativeAcl(ctx, "example_acl", &aiven.KafkaNativeAclArgs{
    			Project:        pulumi.Any(exampleProject.Project),
    			ServiceName:    pulumi.Any(exampleKafka.ServiceName),
    			ResourceType:   pulumi.String("Topic"),
    			ResourceName:   pulumi.String("example-topic"),
    			Principal:      pulumi.String("User:example-user"),
    			Operation:      pulumi.String("Read"),
    			PatternType:    pulumi.String("LITERAL"),
    			PermissionType: pulumi.String("ALLOW"),
    			Host:           pulumi.String("198.51.100.0"),
    		})
    		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 exampleAcl = new Aiven.KafkaNativeAcl("example_acl", new()
        {
            Project = exampleProject.Project,
            ServiceName = exampleKafka.ServiceName,
            ResourceType = "Topic",
            ResourceName = "example-topic",
            Principal = "User:example-user",
            Operation = "Read",
            PatternType = "LITERAL",
            PermissionType = "ALLOW",
            Host = "198.51.100.0",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aiven.KafkaNativeAcl;
    import com.pulumi.aiven.KafkaNativeAclArgs;
    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 exampleAcl = new KafkaNativeAcl("exampleAcl", KafkaNativeAclArgs.builder()
                .project(exampleProject.project())
                .serviceName(exampleKafka.serviceName())
                .resourceType("Topic")
                .resourceName("example-topic")
                .principal("User:example-user")
                .operation("Read")
                .patternType("LITERAL")
                .permissionType("ALLOW")
                .host("198.51.100.0")
                .build());
    
        }
    }
    
    resources:
      exampleAcl:
        type: aiven:KafkaNativeAcl
        name: example_acl
        properties:
          project: ${exampleProject.project}
          serviceName: ${exampleKafka.serviceName}
          resourceType: Topic
          resourceName: example-topic
          principal: User:example-user
          operation: Read
          patternType: LITERAL
          permissionType: ALLOW
          host: 198.51.100.0
    

    Create KafkaNativeAcl Resource

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

    Constructor syntax

    new KafkaNativeAcl(name: string, args: KafkaNativeAclArgs, opts?: CustomResourceOptions);
    @overload
    def KafkaNativeAcl(resource_name: str,
                       args: KafkaNativeAclArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def KafkaNativeAcl(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       operation: Optional[str] = None,
                       pattern_type: Optional[str] = None,
                       permission_type: Optional[str] = None,
                       principal: Optional[str] = None,
                       project: Optional[str] = None,
                       resource_name_: Optional[str] = None,
                       resource_type: Optional[str] = None,
                       service_name: Optional[str] = None,
                       host: Optional[str] = None)
    func NewKafkaNativeAcl(ctx *Context, name string, args KafkaNativeAclArgs, opts ...ResourceOption) (*KafkaNativeAcl, error)
    public KafkaNativeAcl(string name, KafkaNativeAclArgs args, CustomResourceOptions? opts = null)
    public KafkaNativeAcl(String name, KafkaNativeAclArgs args)
    public KafkaNativeAcl(String name, KafkaNativeAclArgs args, CustomResourceOptions options)
    
    type: aiven:KafkaNativeAcl
    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 KafkaNativeAclArgs
    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 KafkaNativeAclArgs
    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 KafkaNativeAclArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KafkaNativeAclArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KafkaNativeAclArgs
    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 kafkaNativeAclResource = new Aiven.KafkaNativeAcl("kafkaNativeAclResource", new()
    {
        Operation = "string",
        PatternType = "string",
        PermissionType = "string",
        Principal = "string",
        Project = "string",
        ResourceName = "string",
        ResourceType = "string",
        ServiceName = "string",
        Host = "string",
    });
    
    example, err := aiven.NewKafkaNativeAcl(ctx, "kafkaNativeAclResource", &aiven.KafkaNativeAclArgs{
    	Operation:      pulumi.String("string"),
    	PatternType:    pulumi.String("string"),
    	PermissionType: pulumi.String("string"),
    	Principal:      pulumi.String("string"),
    	Project:        pulumi.String("string"),
    	ResourceName:   pulumi.String("string"),
    	ResourceType:   pulumi.String("string"),
    	ServiceName:    pulumi.String("string"),
    	Host:           pulumi.String("string"),
    })
    
    var kafkaNativeAclResource = new KafkaNativeAcl("kafkaNativeAclResource", KafkaNativeAclArgs.builder()
        .operation("string")
        .patternType("string")
        .permissionType("string")
        .principal("string")
        .project("string")
        .resourceName("string")
        .resourceType("string")
        .serviceName("string")
        .host("string")
        .build());
    
    kafka_native_acl_resource = aiven.KafkaNativeAcl("kafkaNativeAclResource",
        operation="string",
        pattern_type="string",
        permission_type="string",
        principal="string",
        project="string",
        resource_name_="string",
        resource_type="string",
        service_name="string",
        host="string")
    
    const kafkaNativeAclResource = new aiven.KafkaNativeAcl("kafkaNativeAclResource", {
        operation: "string",
        patternType: "string",
        permissionType: "string",
        principal: "string",
        project: "string",
        resourceName: "string",
        resourceType: "string",
        serviceName: "string",
        host: "string",
    });
    
    type: aiven:KafkaNativeAcl
    properties:
        host: string
        operation: string
        patternType: string
        permissionType: string
        principal: string
        project: string
        resourceName: string
        resourceType: string
        serviceName: string
    

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

    Operation string
    The action that a principal is allowed or denied on the Kafka resource. The possible values are All, Alter, AlterConfigs, ClusterAction, Create, CreateTokens, Delete, Describe, DescribeConfigs, DescribeTokens, IdempotentWrite, Read and Write. Changing this property forces recreation of the resource.
    PatternType string
    Resource pattern used to match specified resources. The possible values are LITERAL and PREFIXED. Changing this property forces recreation of the resource.
    PermissionType string
    Specifies whether the action is explicitly allowed or denied for the principal on the specified resource. The possible values are ALLOW and DENY. Changing this property forces recreation of the resource.
    Principal string
    Identities in user:name format that the permissions apply to. The name supports wildcards. Maximum length: 256. Changing this property forces recreation of the resource.
    Project string
    The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    ResourceName string
    The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: 256. Changing this property forces recreation of the resource.
    ResourceType string
    The type of Kafka resource. The possible values are Cluster, DelegationToken, Group, Topic, TransactionalId and User. Changing this property forces recreation of the resource.
    ServiceName string
    The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    Host string
    The IP address from which a principal is allowed or denied access to the resource. Use * for all hosts. Maximum length: 256. Changing this property forces recreation of the resource.
    Operation string
    The action that a principal is allowed or denied on the Kafka resource. The possible values are All, Alter, AlterConfigs, ClusterAction, Create, CreateTokens, Delete, Describe, DescribeConfigs, DescribeTokens, IdempotentWrite, Read and Write. Changing this property forces recreation of the resource.
    PatternType string
    Resource pattern used to match specified resources. The possible values are LITERAL and PREFIXED. Changing this property forces recreation of the resource.
    PermissionType string
    Specifies whether the action is explicitly allowed or denied for the principal on the specified resource. The possible values are ALLOW and DENY. Changing this property forces recreation of the resource.
    Principal string
    Identities in user:name format that the permissions apply to. The name supports wildcards. Maximum length: 256. Changing this property forces recreation of the resource.
    Project string
    The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    ResourceName string
    The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: 256. Changing this property forces recreation of the resource.
    ResourceType string
    The type of Kafka resource. The possible values are Cluster, DelegationToken, Group, Topic, TransactionalId and User. Changing this property forces recreation of the resource.
    ServiceName string
    The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    Host string
    The IP address from which a principal is allowed or denied access to the resource. Use * for all hosts. Maximum length: 256. Changing this property forces recreation of the resource.
    operation String
    The action that a principal is allowed or denied on the Kafka resource. The possible values are All, Alter, AlterConfigs, ClusterAction, Create, CreateTokens, Delete, Describe, DescribeConfigs, DescribeTokens, IdempotentWrite, Read and Write. Changing this property forces recreation of the resource.
    patternType String
    Resource pattern used to match specified resources. The possible values are LITERAL and PREFIXED. Changing this property forces recreation of the resource.
    permissionType String
    Specifies whether the action is explicitly allowed or denied for the principal on the specified resource. The possible values are ALLOW and DENY. Changing this property forces recreation of the resource.
    principal String
    Identities in user:name format that the permissions apply to. The name supports wildcards. Maximum length: 256. Changing this property forces recreation of the resource.
    project String
    The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    resourceName String
    The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: 256. Changing this property forces recreation of the resource.
    resourceType String
    The type of Kafka resource. The possible values are Cluster, DelegationToken, Group, Topic, TransactionalId and User. Changing this property forces recreation of the resource.
    serviceName String
    The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    host String
    The IP address from which a principal is allowed or denied access to the resource. Use * for all hosts. Maximum length: 256. Changing this property forces recreation of the resource.
    operation string
    The action that a principal is allowed or denied on the Kafka resource. The possible values are All, Alter, AlterConfigs, ClusterAction, Create, CreateTokens, Delete, Describe, DescribeConfigs, DescribeTokens, IdempotentWrite, Read and Write. Changing this property forces recreation of the resource.
    patternType string
    Resource pattern used to match specified resources. The possible values are LITERAL and PREFIXED. Changing this property forces recreation of the resource.
    permissionType string
    Specifies whether the action is explicitly allowed or denied for the principal on the specified resource. The possible values are ALLOW and DENY. Changing this property forces recreation of the resource.
    principal string
    Identities in user:name format that the permissions apply to. The name supports wildcards. Maximum length: 256. Changing this property forces recreation of the resource.
    project string
    The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    resourceName string
    The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: 256. Changing this property forces recreation of the resource.
    resourceType string
    The type of Kafka resource. The possible values are Cluster, DelegationToken, Group, Topic, TransactionalId and User. Changing this property forces recreation of the resource.
    serviceName string
    The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    host string
    The IP address from which a principal is allowed or denied access to the resource. Use * for all hosts. Maximum length: 256. Changing this property forces recreation of the resource.
    operation str
    The action that a principal is allowed or denied on the Kafka resource. The possible values are All, Alter, AlterConfigs, ClusterAction, Create, CreateTokens, Delete, Describe, DescribeConfigs, DescribeTokens, IdempotentWrite, Read and Write. Changing this property forces recreation of the resource.
    pattern_type str
    Resource pattern used to match specified resources. The possible values are LITERAL and PREFIXED. Changing this property forces recreation of the resource.
    permission_type str
    Specifies whether the action is explicitly allowed or denied for the principal on the specified resource. The possible values are ALLOW and DENY. Changing this property forces recreation of the resource.
    principal str
    Identities in user:name format that the permissions apply to. The name supports wildcards. Maximum length: 256. Changing this property forces recreation of the resource.
    project str
    The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    resource_name str
    The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: 256. Changing this property forces recreation of the resource.
    resource_type str
    The type of Kafka resource. The possible values are Cluster, DelegationToken, Group, Topic, TransactionalId and User. Changing this property forces recreation of the resource.
    service_name str
    The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    host str
    The IP address from which a principal is allowed or denied access to the resource. Use * for all hosts. Maximum length: 256. Changing this property forces recreation of the resource.
    operation String
    The action that a principal is allowed or denied on the Kafka resource. The possible values are All, Alter, AlterConfigs, ClusterAction, Create, CreateTokens, Delete, Describe, DescribeConfigs, DescribeTokens, IdempotentWrite, Read and Write. Changing this property forces recreation of the resource.
    patternType String
    Resource pattern used to match specified resources. The possible values are LITERAL and PREFIXED. Changing this property forces recreation of the resource.
    permissionType String
    Specifies whether the action is explicitly allowed or denied for the principal on the specified resource. The possible values are ALLOW and DENY. Changing this property forces recreation of the resource.
    principal String
    Identities in user:name format that the permissions apply to. The name supports wildcards. Maximum length: 256. Changing this property forces recreation of the resource.
    project String
    The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    resourceName String
    The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: 256. Changing this property forces recreation of the resource.
    resourceType String
    The type of Kafka resource. The possible values are Cluster, DelegationToken, Group, Topic, TransactionalId and User. Changing this property forces recreation of the resource.
    serviceName String
    The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    host String
    The IP address from which a principal is allowed or denied access to the resource. Use * for all hosts. Maximum length: 256. Changing this property forces recreation of the resource.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the KafkaNativeAcl 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 KafkaNativeAcl Resource

    Get an existing KafkaNativeAcl 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?: KafkaNativeAclState, opts?: CustomResourceOptions): KafkaNativeAcl
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            host: Optional[str] = None,
            operation: Optional[str] = None,
            pattern_type: Optional[str] = None,
            permission_type: Optional[str] = None,
            principal: Optional[str] = None,
            project: Optional[str] = None,
            resource_name: Optional[str] = None,
            resource_type: Optional[str] = None,
            service_name: Optional[str] = None) -> KafkaNativeAcl
    func GetKafkaNativeAcl(ctx *Context, name string, id IDInput, state *KafkaNativeAclState, opts ...ResourceOption) (*KafkaNativeAcl, error)
    public static KafkaNativeAcl Get(string name, Input<string> id, KafkaNativeAclState? state, CustomResourceOptions? opts = null)
    public static KafkaNativeAcl get(String name, Output<String> id, KafkaNativeAclState state, CustomResourceOptions options)
    resources:  _:    type: aiven:KafkaNativeAcl    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.
    The following state arguments are supported:
    Host string
    The IP address from which a principal is allowed or denied access to the resource. Use * for all hosts. Maximum length: 256. Changing this property forces recreation of the resource.
    Operation string
    The action that a principal is allowed or denied on the Kafka resource. The possible values are All, Alter, AlterConfigs, ClusterAction, Create, CreateTokens, Delete, Describe, DescribeConfigs, DescribeTokens, IdempotentWrite, Read and Write. Changing this property forces recreation of the resource.
    PatternType string
    Resource pattern used to match specified resources. The possible values are LITERAL and PREFIXED. Changing this property forces recreation of the resource.
    PermissionType string
    Specifies whether the action is explicitly allowed or denied for the principal on the specified resource. The possible values are ALLOW and DENY. Changing this property forces recreation of the resource.
    Principal string
    Identities in user:name format that the permissions apply to. The name supports wildcards. Maximum length: 256. Changing this property forces recreation of the resource.
    Project string
    The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    ResourceName string
    The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: 256. Changing this property forces recreation of the resource.
    ResourceType string
    The type of Kafka resource. The possible values are Cluster, DelegationToken, Group, Topic, TransactionalId and User. Changing this property forces recreation of the resource.
    ServiceName string
    The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    Host string
    The IP address from which a principal is allowed or denied access to the resource. Use * for all hosts. Maximum length: 256. Changing this property forces recreation of the resource.
    Operation string
    The action that a principal is allowed or denied on the Kafka resource. The possible values are All, Alter, AlterConfigs, ClusterAction, Create, CreateTokens, Delete, Describe, DescribeConfigs, DescribeTokens, IdempotentWrite, Read and Write. Changing this property forces recreation of the resource.
    PatternType string
    Resource pattern used to match specified resources. The possible values are LITERAL and PREFIXED. Changing this property forces recreation of the resource.
    PermissionType string
    Specifies whether the action is explicitly allowed or denied for the principal on the specified resource. The possible values are ALLOW and DENY. Changing this property forces recreation of the resource.
    Principal string
    Identities in user:name format that the permissions apply to. The name supports wildcards. Maximum length: 256. Changing this property forces recreation of the resource.
    Project string
    The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    ResourceName string
    The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: 256. Changing this property forces recreation of the resource.
    ResourceType string
    The type of Kafka resource. The possible values are Cluster, DelegationToken, Group, Topic, TransactionalId and User. Changing this property forces recreation of the resource.
    ServiceName string
    The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    host String
    The IP address from which a principal is allowed or denied access to the resource. Use * for all hosts. Maximum length: 256. Changing this property forces recreation of the resource.
    operation String
    The action that a principal is allowed or denied on the Kafka resource. The possible values are All, Alter, AlterConfigs, ClusterAction, Create, CreateTokens, Delete, Describe, DescribeConfigs, DescribeTokens, IdempotentWrite, Read and Write. Changing this property forces recreation of the resource.
    patternType String
    Resource pattern used to match specified resources. The possible values are LITERAL and PREFIXED. Changing this property forces recreation of the resource.
    permissionType String
    Specifies whether the action is explicitly allowed or denied for the principal on the specified resource. The possible values are ALLOW and DENY. Changing this property forces recreation of the resource.
    principal String
    Identities in user:name format that the permissions apply to. The name supports wildcards. Maximum length: 256. Changing this property forces recreation of the resource.
    project String
    The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    resourceName String
    The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: 256. Changing this property forces recreation of the resource.
    resourceType String
    The type of Kafka resource. The possible values are Cluster, DelegationToken, Group, Topic, TransactionalId and User. Changing this property forces recreation of the resource.
    serviceName String
    The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    host string
    The IP address from which a principal is allowed or denied access to the resource. Use * for all hosts. Maximum length: 256. Changing this property forces recreation of the resource.
    operation string
    The action that a principal is allowed or denied on the Kafka resource. The possible values are All, Alter, AlterConfigs, ClusterAction, Create, CreateTokens, Delete, Describe, DescribeConfigs, DescribeTokens, IdempotentWrite, Read and Write. Changing this property forces recreation of the resource.
    patternType string
    Resource pattern used to match specified resources. The possible values are LITERAL and PREFIXED. Changing this property forces recreation of the resource.
    permissionType string
    Specifies whether the action is explicitly allowed or denied for the principal on the specified resource. The possible values are ALLOW and DENY. Changing this property forces recreation of the resource.
    principal string
    Identities in user:name format that the permissions apply to. The name supports wildcards. Maximum length: 256. Changing this property forces recreation of the resource.
    project string
    The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    resourceName string
    The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: 256. Changing this property forces recreation of the resource.
    resourceType string
    The type of Kafka resource. The possible values are Cluster, DelegationToken, Group, Topic, TransactionalId and User. Changing this property forces recreation of the resource.
    serviceName string
    The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    host str
    The IP address from which a principal is allowed or denied access to the resource. Use * for all hosts. Maximum length: 256. Changing this property forces recreation of the resource.
    operation str
    The action that a principal is allowed or denied on the Kafka resource. The possible values are All, Alter, AlterConfigs, ClusterAction, Create, CreateTokens, Delete, Describe, DescribeConfigs, DescribeTokens, IdempotentWrite, Read and Write. Changing this property forces recreation of the resource.
    pattern_type str
    Resource pattern used to match specified resources. The possible values are LITERAL and PREFIXED. Changing this property forces recreation of the resource.
    permission_type str
    Specifies whether the action is explicitly allowed or denied for the principal on the specified resource. The possible values are ALLOW and DENY. Changing this property forces recreation of the resource.
    principal str
    Identities in user:name format that the permissions apply to. The name supports wildcards. Maximum length: 256. Changing this property forces recreation of the resource.
    project str
    The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    resource_name str
    The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: 256. Changing this property forces recreation of the resource.
    resource_type str
    The type of Kafka resource. The possible values are Cluster, DelegationToken, Group, Topic, TransactionalId and User. Changing this property forces recreation of the resource.
    service_name str
    The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    host String
    The IP address from which a principal is allowed or denied access to the resource. Use * for all hosts. Maximum length: 256. Changing this property forces recreation of the resource.
    operation String
    The action that a principal is allowed or denied on the Kafka resource. The possible values are All, Alter, AlterConfigs, ClusterAction, Create, CreateTokens, Delete, Describe, DescribeConfigs, DescribeTokens, IdempotentWrite, Read and Write. Changing this property forces recreation of the resource.
    patternType String
    Resource pattern used to match specified resources. The possible values are LITERAL and PREFIXED. Changing this property forces recreation of the resource.
    permissionType String
    Specifies whether the action is explicitly allowed or denied for the principal on the specified resource. The possible values are ALLOW and DENY. Changing this property forces recreation of the resource.
    principal String
    Identities in user:name format that the permissions apply to. The name supports wildcards. Maximum length: 256. Changing this property forces recreation of the resource.
    project String
    The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
    resourceName String
    The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: 256. Changing this property forces recreation of the resource.
    resourceType String
    The type of Kafka resource. The possible values are Cluster, DelegationToken, Group, Topic, TransactionalId and User. Changing this property forces recreation of the resource.
    serviceName String
    The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.

    Import

    $ pulumi import aiven:index/kafkaNativeAcl:KafkaNativeAcl example_acl PROJECT/SERVICE_NAME/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 aiven Terraform Provider.
    aiven logo
    Aiven v6.36.0 published on Thursday, Mar 13, 2025 by Pulumi