published on Wednesday, Jun 3, 2026 by redpanda-data
published on Wednesday, Jun 3, 2026 by redpanda-data
Import
Schema Registry ACLs can be imported using a comma-separated string. Two forms are supported:
Bearer auth (default):
cluster_id,principal,resource_type,resource_name,pattern_type,host,operation,permission
Basic auth (optional, when explicit SASL credentials are needed):
cluster_id,principal,resource_type,resource_name,pattern_type,host,operation,permission,username,password
Example imports:
Import via Bearer auth (default) — no username or password required
$ pulumi import redpanda:index/schemaRegistryAcl:SchemaRegistryAcl example "cluster-123,User:alice,SUBJECT,user-value,LITERAL,*,READ,ALLOW"
Import via Bearer auth with a role principal containing colons
$ pulumi import redpanda:index/schemaRegistryAcl:SchemaRegistryAcl admin "cluster-123,RedpandaRole:admin,REGISTRY,*,LITERAL,*,ALL,ALLOW"
Import via Basic auth with explicit SASL credentials
$ pulumi import redpanda:index/schemaRegistryAcl:SchemaRegistryAcl prefix "cluster-123,User:bob,SUBJECT,orders-,PREFIXED,*,WRITE,ALLOW,bob,pass123"
For Basic auth, the password can also be supplied via the REDPANDA_IMPORT_PASSWORD environment variable instead of placing it in the import ID.
Create SchemaRegistryAcl Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SchemaRegistryAcl(name: string, args: SchemaRegistryAclArgs, opts?: CustomResourceOptions);@overload
def SchemaRegistryAcl(resource_name: str,
args: SchemaRegistryAclArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SchemaRegistryAcl(resource_name: str,
opts: Optional[ResourceOptions] = None,
principal: Optional[str] = None,
cluster_id: Optional[str] = None,
host: Optional[str] = None,
operation: Optional[str] = None,
pattern_type: Optional[str] = None,
permission: Optional[str] = None,
resource_name_: Optional[str] = None,
resource_type: Optional[str] = None,
password: Optional[str] = None,
password_wo: Optional[str] = None,
password_wo_version: Optional[float] = None,
allow_deletion: Optional[bool] = None,
username: Optional[str] = None)func NewSchemaRegistryAcl(ctx *Context, name string, args SchemaRegistryAclArgs, opts ...ResourceOption) (*SchemaRegistryAcl, error)public SchemaRegistryAcl(string name, SchemaRegistryAclArgs args, CustomResourceOptions? opts = null)
public SchemaRegistryAcl(String name, SchemaRegistryAclArgs args)
public SchemaRegistryAcl(String name, SchemaRegistryAclArgs args, CustomResourceOptions options)
type: redpanda:SchemaRegistryAcl
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "redpanda_schemaregistryacl" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args SchemaRegistryAclArgs
- 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 SchemaRegistryAclArgs
- 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 SchemaRegistryAclArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SchemaRegistryAclArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SchemaRegistryAclArgs
- 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 schemaRegistryAclResource = new Redpanda.SchemaRegistryAcl("schemaRegistryAclResource", new()
{
Principal = "string",
ClusterId = "string",
Host = "string",
Operation = "string",
PatternType = "string",
Permission = "string",
ResourceName = "string",
ResourceType = "string",
Password = "string",
AllowDeletion = false,
Username = "string",
});
example, err := redpanda.NewSchemaRegistryAcl(ctx, "schemaRegistryAclResource", &redpanda.SchemaRegistryAclArgs{
Principal: pulumi.String("string"),
ClusterId: pulumi.String("string"),
Host: pulumi.String("string"),
Operation: pulumi.String("string"),
PatternType: pulumi.String("string"),
Permission: pulumi.String("string"),
ResourceName: pulumi.String("string"),
ResourceType: pulumi.String("string"),
Password: pulumi.String("string"),
AllowDeletion: pulumi.Bool(false),
Username: pulumi.String("string"),
})
resource "redpanda_schemaregistryacl" "schemaRegistryAclResource" {
principal = "string"
cluster_id = "string"
host = "string"
operation = "string"
pattern_type = "string"
permission = "string"
resource_name = "string"
resource_type = "string"
password = "string"
allow_deletion = false
username = "string"
}
var schemaRegistryAclResource = new SchemaRegistryAcl("schemaRegistryAclResource", SchemaRegistryAclArgs.builder()
.principal("string")
.clusterId("string")
.host("string")
.operation("string")
.patternType("string")
.permission("string")
.resourceName("string")
.resourceType("string")
.password("string")
.allowDeletion(false)
.username("string")
.build());
schema_registry_acl_resource = redpanda.SchemaRegistryAcl("schemaRegistryAclResource",
principal="string",
cluster_id="string",
host="string",
operation="string",
pattern_type="string",
permission="string",
resource_name_="string",
resource_type="string",
password="string",
allow_deletion=False,
username="string")
const schemaRegistryAclResource = new redpanda.SchemaRegistryAcl("schemaRegistryAclResource", {
principal: "string",
clusterId: "string",
host: "string",
operation: "string",
patternType: "string",
permission: "string",
resourceName: "string",
resourceType: "string",
password: "string",
allowDeletion: false,
username: "string",
});
type: redpanda:SchemaRegistryAcl
properties:
allowDeletion: false
clusterId: string
host: string
operation: string
password: string
patternType: string
permission: string
principal: string
resourceName: string
resourceType: string
username: string
SchemaRegistryAcl 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 SchemaRegistryAcl resource accepts the following input properties:
- Cluster
Id string - The ID of the cluster where the Schema Registry ACL will be created
- Host string
- The host address to use for this ACL. Use '*' for wildcard
- Operation string
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- Pattern
Type string - The pattern type of the resource: LITERAL or PREFIXED
- Permission string
- The permission type: ALLOW or DENY
- Principal string
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- Resource
Name string - The name of the resource this ACL entry will be on. Use '*' for wildcard
- Resource
Type string - The type of the resource: SUBJECT or REGISTRY
- Allow
Deletion bool - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- Password string
- Password
Wo string - Password
Wo doubleVersion - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- Username string
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
- Cluster
Id string - The ID of the cluster where the Schema Registry ACL will be created
- Host string
- The host address to use for this ACL. Use '*' for wildcard
- Operation string
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- Pattern
Type string - The pattern type of the resource: LITERAL or PREFIXED
- Permission string
- The permission type: ALLOW or DENY
- Principal string
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- Resource
Name string - The name of the resource this ACL entry will be on. Use '*' for wildcard
- Resource
Type string - The type of the resource: SUBJECT or REGISTRY
- Allow
Deletion bool - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- Password string
- Password
Wo string - Password
Wo float64Version - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- Username string
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
- cluster_
id string - The ID of the cluster where the Schema Registry ACL will be created
- host string
- The host address to use for this ACL. Use '*' for wildcard
- operation string
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- pattern_
type string - The pattern type of the resource: LITERAL or PREFIXED
- permission string
- The permission type: ALLOW or DENY
- principal string
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- resource_
name string - The name of the resource this ACL entry will be on. Use '*' for wildcard
- resource_
type string - The type of the resource: SUBJECT or REGISTRY
- allow_
deletion bool - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- password string
- password_
wo string - password_
wo_ numberversion - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- username string
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
- cluster
Id String - The ID of the cluster where the Schema Registry ACL will be created
- host String
- The host address to use for this ACL. Use '*' for wildcard
- operation String
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- pattern
Type String - The pattern type of the resource: LITERAL or PREFIXED
- permission String
- The permission type: ALLOW or DENY
- principal String
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- resource
Name String - The name of the resource this ACL entry will be on. Use '*' for wildcard
- resource
Type String - The type of the resource: SUBJECT or REGISTRY
- allow
Deletion Boolean - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- password String
- password
Wo String - password
Wo DoubleVersion - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- username String
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
- cluster
Id string - The ID of the cluster where the Schema Registry ACL will be created
- host string
- The host address to use for this ACL. Use '*' for wildcard
- operation string
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- pattern
Type string - The pattern type of the resource: LITERAL or PREFIXED
- permission string
- The permission type: ALLOW or DENY
- principal string
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- resource
Name string - The name of the resource this ACL entry will be on. Use '*' for wildcard
- resource
Type string - The type of the resource: SUBJECT or REGISTRY
- allow
Deletion boolean - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- password string
- password
Wo string - password
Wo numberVersion - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- username string
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
- cluster_
id str - The ID of the cluster where the Schema Registry ACL will be created
- host str
- The host address to use for this ACL. Use '*' for wildcard
- operation str
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- pattern_
type str - The pattern type of the resource: LITERAL or PREFIXED
- permission str
- The permission type: ALLOW or DENY
- principal str
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- resource_
name str - The name of the resource this ACL entry will be on. Use '*' for wildcard
- resource_
type str - The type of the resource: SUBJECT or REGISTRY
- allow_
deletion bool - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- password str
- password_
wo str - password_
wo_ floatversion - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- username str
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
- cluster
Id String - The ID of the cluster where the Schema Registry ACL will be created
- host String
- The host address to use for this ACL. Use '*' for wildcard
- operation String
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- pattern
Type String - The pattern type of the resource: LITERAL or PREFIXED
- permission String
- The permission type: ALLOW or DENY
- principal String
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- resource
Name String - The name of the resource this ACL entry will be on. Use '*' for wildcard
- resource
Type String - The type of the resource: SUBJECT or REGISTRY
- allow
Deletion Boolean - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- password String
- password
Wo String - password
Wo NumberVersion - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- username String
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
Outputs
All input properties are implicitly available as output properties. Additionally, the SchemaRegistryAcl 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 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 SchemaRegistryAcl Resource
Get an existing SchemaRegistryAcl 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?: SchemaRegistryAclState, opts?: CustomResourceOptions): SchemaRegistryAcl@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_deletion: Optional[bool] = None,
cluster_id: Optional[str] = None,
host: Optional[str] = None,
operation: Optional[str] = None,
password: Optional[str] = None,
password_wo: Optional[str] = None,
password_wo_version: Optional[float] = None,
pattern_type: Optional[str] = None,
permission: Optional[str] = None,
principal: Optional[str] = None,
resource_name: Optional[str] = None,
resource_type: Optional[str] = None,
username: Optional[str] = None) -> SchemaRegistryAclfunc GetSchemaRegistryAcl(ctx *Context, name string, id IDInput, state *SchemaRegistryAclState, opts ...ResourceOption) (*SchemaRegistryAcl, error)public static SchemaRegistryAcl Get(string name, Input<string> id, SchemaRegistryAclState? state, CustomResourceOptions? opts = null)public static SchemaRegistryAcl get(String name, Output<String> id, SchemaRegistryAclState state, CustomResourceOptions options)resources: _: type: redpanda:SchemaRegistryAcl get: id: ${id}import {
to = redpanda_schemaregistryacl.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.
- Allow
Deletion bool - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- Cluster
Id string - The ID of the cluster where the Schema Registry ACL will be created
- Host string
- The host address to use for this ACL. Use '*' for wildcard
- Operation string
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- Password string
- Password
Wo string - Password
Wo doubleVersion - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- Pattern
Type string - The pattern type of the resource: LITERAL or PREFIXED
- Permission string
- The permission type: ALLOW or DENY
- Principal string
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- Resource
Name string - The name of the resource this ACL entry will be on. Use '*' for wildcard
- Resource
Type string - The type of the resource: SUBJECT or REGISTRY
- Username string
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
- Allow
Deletion bool - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- Cluster
Id string - The ID of the cluster where the Schema Registry ACL will be created
- Host string
- The host address to use for this ACL. Use '*' for wildcard
- Operation string
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- Password string
- Password
Wo string - Password
Wo float64Version - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- Pattern
Type string - The pattern type of the resource: LITERAL or PREFIXED
- Permission string
- The permission type: ALLOW or DENY
- Principal string
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- Resource
Name string - The name of the resource this ACL entry will be on. Use '*' for wildcard
- Resource
Type string - The type of the resource: SUBJECT or REGISTRY
- Username string
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
- allow_
deletion bool - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- cluster_
id string - The ID of the cluster where the Schema Registry ACL will be created
- host string
- The host address to use for this ACL. Use '*' for wildcard
- operation string
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- password string
- password_
wo string - password_
wo_ numberversion - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- pattern_
type string - The pattern type of the resource: LITERAL or PREFIXED
- permission string
- The permission type: ALLOW or DENY
- principal string
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- resource_
name string - The name of the resource this ACL entry will be on. Use '*' for wildcard
- resource_
type string - The type of the resource: SUBJECT or REGISTRY
- username string
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
- allow
Deletion Boolean - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- cluster
Id String - The ID of the cluster where the Schema Registry ACL will be created
- host String
- The host address to use for this ACL. Use '*' for wildcard
- operation String
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- password String
- password
Wo String - password
Wo DoubleVersion - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- pattern
Type String - The pattern type of the resource: LITERAL or PREFIXED
- permission String
- The permission type: ALLOW or DENY
- principal String
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- resource
Name String - The name of the resource this ACL entry will be on. Use '*' for wildcard
- resource
Type String - The type of the resource: SUBJECT or REGISTRY
- username String
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
- allow
Deletion boolean - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- cluster
Id string - The ID of the cluster where the Schema Registry ACL will be created
- host string
- The host address to use for this ACL. Use '*' for wildcard
- operation string
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- password string
- password
Wo string - password
Wo numberVersion - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- pattern
Type string - The pattern type of the resource: LITERAL or PREFIXED
- permission string
- The permission type: ALLOW or DENY
- principal string
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- resource
Name string - The name of the resource this ACL entry will be on. Use '*' for wildcard
- resource
Type string - The type of the resource: SUBJECT or REGISTRY
- username string
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
- allow_
deletion bool - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- cluster_
id str - The ID of the cluster where the Schema Registry ACL will be created
- host str
- The host address to use for this ACL. Use '*' for wildcard
- operation str
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- password str
- password_
wo str - password_
wo_ floatversion - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- pattern_
type str - The pattern type of the resource: LITERAL or PREFIXED
- permission str
- The permission type: ALLOW or DENY
- principal str
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- resource_
name str - The name of the resource this ACL entry will be on. Use '*' for wildcard
- resource_
type str - The type of the resource: SUBJECT or REGISTRY
- username str
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
- allow
Deletion Boolean - When set to true, allows the resource to be removed from state even if deletion fails due to permission errors
- cluster
Id String - The ID of the cluster where the Schema Registry ACL will be created
- host String
- The host address to use for this ACL. Use '*' for wildcard
- operation String
- The operation type that shall be allowed or denied: ALL, READ, WRITE, DELETE, DESCRIBE, DESCRIBECONFIGS, ALTER, ALTERCONFIGS
- password String
- password
Wo String - password
Wo NumberVersion - Deprecated. Version counter for password_wo, which is itself deprecated for this resource.
- pattern
Type String - The pattern type of the resource: LITERAL or PREFIXED
- permission String
- The permission type: ALLOW or DENY
- principal String
- The principal to apply this ACL for (e.g., User:alice or RedpandaRole:admin)
- resource
Name String - The name of the resource this ACL entry will be on. Use '*' for wildcard
- resource
Type String - The type of the resource: SUBJECT or REGISTRY
- username String
- SASL username for Schema Registry HTTP Basic authentication. Optional: when omitted (together with password) the provider authenticates to Schema Registry using its cloud Bearer token. Supply username + password only when you need writes to be attributed to a specific SASL identity (e.g., audit / least-privilege).
Package Details
- Repository
- redpanda redpanda-data/terraform-provider-redpanda
- License
- Notes
- This Pulumi package is based on the
redpandaTerraform Provider.
published on Wednesday, Jun 3, 2026 by redpanda-data