published on Monday, Mar 9, 2026 by Pulumi
published on Monday, Mar 9, 2026 by Pulumi
The Kafka Connect resource allows the creation and management of Aiven Kafka Connect services.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Aiven = Pulumi.Aiven;
return await Deployment.RunAsync(() =>
{
var kc1 = new Aiven.KafkaConnect("kc1", new()
{
Project = data.Aiven_project.Pr1.Project,
CloudName = "google-europe-west1",
Plan = "startup-4",
ServiceName = "my-kc1",
MaintenanceWindowDow = "monday",
MaintenanceWindowTime = "10:00:00",
KafkaConnectUserConfig = new Aiven.Inputs.KafkaConnectKafkaConnectUserConfigArgs
{
KafkaConnect = new Aiven.Inputs.KafkaConnectKafkaConnectUserConfigKafkaConnectArgs
{
ConsumerIsolationLevel = "read_committed",
},
PublicAccess = new Aiven.Inputs.KafkaConnectKafkaConnectUserConfigPublicAccessArgs
{
KafkaConnect = "true",
},
},
});
});
package main
import (
"github.com/pulumi/pulumi-aiven/sdk/v5/go/aiven"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := aiven.NewKafkaConnect(ctx, "kc1", &aiven.KafkaConnectArgs{
Project: pulumi.Any(data.Aiven_project.Pr1.Project),
CloudName: pulumi.String("google-europe-west1"),
Plan: pulumi.String("startup-4"),
ServiceName: pulumi.String("my-kc1"),
MaintenanceWindowDow: pulumi.String("monday"),
MaintenanceWindowTime: pulumi.String("10:00:00"),
KafkaConnectUserConfig: &aiven.KafkaConnectKafkaConnectUserConfigArgs{
KafkaConnect: &aiven.KafkaConnectKafkaConnectUserConfigKafkaConnectArgs{
ConsumerIsolationLevel: pulumi.String("read_committed"),
},
PublicAccess: &aiven.KafkaConnectKafkaConnectUserConfigPublicAccessArgs{
KafkaConnect: pulumi.String("true"),
},
},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aiven.KafkaConnect;
import com.pulumi.aiven.KafkaConnectArgs;
import com.pulumi.aiven.inputs.KafkaConnectKafkaConnectUserConfigArgs;
import com.pulumi.aiven.inputs.KafkaConnectKafkaConnectUserConfigKafkaConnectArgs;
import com.pulumi.aiven.inputs.KafkaConnectKafkaConnectUserConfigPublicAccessArgs;
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 kc1 = new KafkaConnect("kc1", KafkaConnectArgs.builder()
.project(data.aiven_project().pr1().project())
.cloudName("google-europe-west1")
.plan("startup-4")
.serviceName("my-kc1")
.maintenanceWindowDow("monday")
.maintenanceWindowTime("10:00:00")
.kafkaConnectUserConfig(KafkaConnectKafkaConnectUserConfigArgs.builder()
.kafkaConnect(KafkaConnectKafkaConnectUserConfigKafkaConnectArgs.builder()
.consumerIsolationLevel("read_committed")
.build())
.publicAccess(KafkaConnectKafkaConnectUserConfigPublicAccessArgs.builder()
.kafkaConnect(true)
.build())
.build())
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as aiven from "@pulumi/aiven";
const kc1 = new aiven.KafkaConnect("kc1", {
project: data.aiven_project.pr1.project,
cloudName: "google-europe-west1",
plan: "startup-4",
serviceName: "my-kc1",
maintenanceWindowDow: "monday",
maintenanceWindowTime: "10:00:00",
kafkaConnectUserConfig: {
kafkaConnect: {
consumerIsolationLevel: "read_committed",
},
publicAccess: {
kafkaConnect: "true",
},
},
});
import pulumi
import pulumi_aiven as aiven
kc1 = aiven.KafkaConnect("kc1",
project=data["aiven_project"]["pr1"]["project"],
cloud_name="google-europe-west1",
plan="startup-4",
service_name="my-kc1",
maintenance_window_dow="monday",
maintenance_window_time="10:00:00",
kafka_connect_user_config=aiven.KafkaConnectKafkaConnectUserConfigArgs(
kafka_connect=aiven.KafkaConnectKafkaConnectUserConfigKafkaConnectArgs(
consumer_isolation_level="read_committed",
),
public_access=aiven.KafkaConnectKafkaConnectUserConfigPublicAccessArgs(
kafka_connect="true",
),
))
resources:
kc1:
type: aiven:KafkaConnect
properties:
project: ${data.aiven_project.pr1.project}
cloudName: google-europe-west1
plan: startup-4
serviceName: my-kc1
maintenanceWindowDow: monday
maintenanceWindowTime: 10:00:00
kafkaConnectUserConfig:
kafkaConnect:
consumerIsolationLevel: read_committed
publicAccess:
kafkaConnect: true
Create KafkaConnect Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KafkaConnect(name: string, args: KafkaConnectArgs, opts?: CustomResourceOptions);@overload
def KafkaConnect(resource_name: str,
args: KafkaConnectArgs,
opts: Optional[ResourceOptions] = None)
@overload
def KafkaConnect(resource_name: str,
opts: Optional[ResourceOptions] = None,
project: Optional[str] = None,
service_name: Optional[str] = None,
plan: Optional[str] = None,
kafka_connect_user_config: Optional[KafkaConnectKafkaConnectUserConfigArgs] = None,
maintenance_window_dow: Optional[str] = None,
maintenance_window_time: Optional[str] = None,
additional_disk_space: Optional[str] = None,
disk_space: Optional[str] = None,
project_vpc_id: Optional[str] = None,
service_integrations: Optional[Sequence[KafkaConnectServiceIntegrationArgs]] = None,
cloud_name: Optional[str] = None,
static_ips: Optional[Sequence[str]] = None,
tags: Optional[Sequence[KafkaConnectTagArgs]] = None,
termination_protection: Optional[bool] = None)func NewKafkaConnect(ctx *Context, name string, args KafkaConnectArgs, opts ...ResourceOption) (*KafkaConnect, error)public KafkaConnect(string name, KafkaConnectArgs args, CustomResourceOptions? opts = null)
public KafkaConnect(String name, KafkaConnectArgs args)
public KafkaConnect(String name, KafkaConnectArgs args, CustomResourceOptions options)
type: aiven:KafkaConnect
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 KafkaConnectArgs
- 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 KafkaConnectArgs
- 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 KafkaConnectArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KafkaConnectArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KafkaConnectArgs
- 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 kafkaConnectResource = new Aiven.KafkaConnect("kafkaConnectResource", new()
{
Project = "string",
ServiceName = "string",
Plan = "string",
KafkaConnectUserConfig = new Aiven.Inputs.KafkaConnectKafkaConnectUserConfigArgs
{
AdditionalBackupRegions = "string",
IpFilterObjects = new[]
{
new Aiven.Inputs.KafkaConnectKafkaConnectUserConfigIpFilterObjectArgs
{
Description = "string",
Network = "string",
},
},
IpFilters = new[]
{
"string",
},
KafkaConnect = new Aiven.Inputs.KafkaConnectKafkaConnectUserConfigKafkaConnectArgs
{
ConnectorClientConfigOverridePolicy = "string",
ConsumerAutoOffsetReset = "string",
ConsumerFetchMaxBytes = "string",
ConsumerIsolationLevel = "string",
ConsumerMaxPartitionFetchBytes = "string",
ConsumerMaxPollIntervalMs = "string",
ConsumerMaxPollRecords = "string",
OffsetFlushIntervalMs = "string",
OffsetFlushTimeoutMs = "string",
ProducerCompressionType = "string",
ProducerMaxRequestSize = "string",
SessionTimeoutMs = "string",
},
PrivateAccess = new Aiven.Inputs.KafkaConnectKafkaConnectUserConfigPrivateAccessArgs
{
KafkaConnect = "string",
Prometheus = "string",
},
PrivatelinkAccess = new Aiven.Inputs.KafkaConnectKafkaConnectUserConfigPrivatelinkAccessArgs
{
Jolokia = "string",
KafkaConnect = "string",
Prometheus = "string",
},
PublicAccess = new Aiven.Inputs.KafkaConnectKafkaConnectUserConfigPublicAccessArgs
{
KafkaConnect = "string",
Prometheus = "string",
},
StaticIps = "string",
},
MaintenanceWindowDow = "string",
MaintenanceWindowTime = "string",
AdditionalDiskSpace = "string",
DiskSpace = "string",
ProjectVpcId = "string",
ServiceIntegrations = new[]
{
new Aiven.Inputs.KafkaConnectServiceIntegrationArgs
{
IntegrationType = "string",
SourceServiceName = "string",
},
},
CloudName = "string",
StaticIps = new[]
{
"string",
},
Tags = new[]
{
new Aiven.Inputs.KafkaConnectTagArgs
{
Key = "string",
Value = "string",
},
},
TerminationProtection = false,
});
example, err := aiven.NewKafkaConnect(ctx, "kafkaConnectResource", &aiven.KafkaConnectArgs{
Project: pulumi.String("string"),
ServiceName: pulumi.String("string"),
Plan: pulumi.String("string"),
KafkaConnectUserConfig: &aiven.KafkaConnectKafkaConnectUserConfigArgs{
AdditionalBackupRegions: pulumi.String("string"),
IpFilterObjects: aiven.KafkaConnectKafkaConnectUserConfigIpFilterObjectArray{
&aiven.KafkaConnectKafkaConnectUserConfigIpFilterObjectArgs{
Description: pulumi.String("string"),
Network: pulumi.String("string"),
},
},
IpFilters: pulumi.StringArray{
pulumi.String("string"),
},
KafkaConnect: &aiven.KafkaConnectKafkaConnectUserConfigKafkaConnectArgs{
ConnectorClientConfigOverridePolicy: pulumi.String("string"),
ConsumerAutoOffsetReset: pulumi.String("string"),
ConsumerFetchMaxBytes: pulumi.String("string"),
ConsumerIsolationLevel: pulumi.String("string"),
ConsumerMaxPartitionFetchBytes: pulumi.String("string"),
ConsumerMaxPollIntervalMs: pulumi.String("string"),
ConsumerMaxPollRecords: pulumi.String("string"),
OffsetFlushIntervalMs: pulumi.String("string"),
OffsetFlushTimeoutMs: pulumi.String("string"),
ProducerCompressionType: pulumi.String("string"),
ProducerMaxRequestSize: pulumi.String("string"),
SessionTimeoutMs: pulumi.String("string"),
},
PrivateAccess: &aiven.KafkaConnectKafkaConnectUserConfigPrivateAccessArgs{
KafkaConnect: pulumi.String("string"),
Prometheus: pulumi.String("string"),
},
PrivatelinkAccess: &aiven.KafkaConnectKafkaConnectUserConfigPrivatelinkAccessArgs{
Jolokia: pulumi.String("string"),
KafkaConnect: pulumi.String("string"),
Prometheus: pulumi.String("string"),
},
PublicAccess: &aiven.KafkaConnectKafkaConnectUserConfigPublicAccessArgs{
KafkaConnect: pulumi.String("string"),
Prometheus: pulumi.String("string"),
},
StaticIps: pulumi.String("string"),
},
MaintenanceWindowDow: pulumi.String("string"),
MaintenanceWindowTime: pulumi.String("string"),
AdditionalDiskSpace: pulumi.String("string"),
DiskSpace: pulumi.String("string"),
ProjectVpcId: pulumi.String("string"),
ServiceIntegrations: aiven.KafkaConnectServiceIntegrationArray{
&aiven.KafkaConnectServiceIntegrationArgs{
IntegrationType: pulumi.String("string"),
SourceServiceName: pulumi.String("string"),
},
},
CloudName: pulumi.String("string"),
StaticIps: pulumi.StringArray{
pulumi.String("string"),
},
Tags: aiven.KafkaConnectTagArray{
&aiven.KafkaConnectTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
TerminationProtection: pulumi.Bool(false),
})
var kafkaConnectResource = new KafkaConnect("kafkaConnectResource", KafkaConnectArgs.builder()
.project("string")
.serviceName("string")
.plan("string")
.kafkaConnectUserConfig(KafkaConnectKafkaConnectUserConfigArgs.builder()
.additionalBackupRegions("string")
.ipFilterObjects(KafkaConnectKafkaConnectUserConfigIpFilterObjectArgs.builder()
.description("string")
.network("string")
.build())
.ipFilters("string")
.kafkaConnect(KafkaConnectKafkaConnectUserConfigKafkaConnectArgs.builder()
.connectorClientConfigOverridePolicy("string")
.consumerAutoOffsetReset("string")
.consumerFetchMaxBytes("string")
.consumerIsolationLevel("string")
.consumerMaxPartitionFetchBytes("string")
.consumerMaxPollIntervalMs("string")
.consumerMaxPollRecords("string")
.offsetFlushIntervalMs("string")
.offsetFlushTimeoutMs("string")
.producerCompressionType("string")
.producerMaxRequestSize("string")
.sessionTimeoutMs("string")
.build())
.privateAccess(KafkaConnectKafkaConnectUserConfigPrivateAccessArgs.builder()
.kafkaConnect("string")
.prometheus("string")
.build())
.privatelinkAccess(KafkaConnectKafkaConnectUserConfigPrivatelinkAccessArgs.builder()
.jolokia("string")
.kafkaConnect("string")
.prometheus("string")
.build())
.publicAccess(KafkaConnectKafkaConnectUserConfigPublicAccessArgs.builder()
.kafkaConnect("string")
.prometheus("string")
.build())
.staticIps("string")
.build())
.maintenanceWindowDow("string")
.maintenanceWindowTime("string")
.additionalDiskSpace("string")
.diskSpace("string")
.projectVpcId("string")
.serviceIntegrations(KafkaConnectServiceIntegrationArgs.builder()
.integrationType("string")
.sourceServiceName("string")
.build())
.cloudName("string")
.staticIps("string")
.tags(KafkaConnectTagArgs.builder()
.key("string")
.value("string")
.build())
.terminationProtection(false)
.build());
kafka_connect_resource = aiven.KafkaConnect("kafkaConnectResource",
project="string",
service_name="string",
plan="string",
kafka_connect_user_config={
"additional_backup_regions": "string",
"ip_filter_objects": [{
"description": "string",
"network": "string",
}],
"ip_filters": ["string"],
"kafka_connect": {
"connector_client_config_override_policy": "string",
"consumer_auto_offset_reset": "string",
"consumer_fetch_max_bytes": "string",
"consumer_isolation_level": "string",
"consumer_max_partition_fetch_bytes": "string",
"consumer_max_poll_interval_ms": "string",
"consumer_max_poll_records": "string",
"offset_flush_interval_ms": "string",
"offset_flush_timeout_ms": "string",
"producer_compression_type": "string",
"producer_max_request_size": "string",
"session_timeout_ms": "string",
},
"private_access": {
"kafka_connect": "string",
"prometheus": "string",
},
"privatelink_access": {
"jolokia": "string",
"kafka_connect": "string",
"prometheus": "string",
},
"public_access": {
"kafka_connect": "string",
"prometheus": "string",
},
"static_ips": "string",
},
maintenance_window_dow="string",
maintenance_window_time="string",
additional_disk_space="string",
disk_space="string",
project_vpc_id="string",
service_integrations=[{
"integration_type": "string",
"source_service_name": "string",
}],
cloud_name="string",
static_ips=["string"],
tags=[{
"key": "string",
"value": "string",
}],
termination_protection=False)
const kafkaConnectResource = new aiven.KafkaConnect("kafkaConnectResource", {
project: "string",
serviceName: "string",
plan: "string",
kafkaConnectUserConfig: {
additionalBackupRegions: "string",
ipFilterObjects: [{
description: "string",
network: "string",
}],
ipFilters: ["string"],
kafkaConnect: {
connectorClientConfigOverridePolicy: "string",
consumerAutoOffsetReset: "string",
consumerFetchMaxBytes: "string",
consumerIsolationLevel: "string",
consumerMaxPartitionFetchBytes: "string",
consumerMaxPollIntervalMs: "string",
consumerMaxPollRecords: "string",
offsetFlushIntervalMs: "string",
offsetFlushTimeoutMs: "string",
producerCompressionType: "string",
producerMaxRequestSize: "string",
sessionTimeoutMs: "string",
},
privateAccess: {
kafkaConnect: "string",
prometheus: "string",
},
privatelinkAccess: {
jolokia: "string",
kafkaConnect: "string",
prometheus: "string",
},
publicAccess: {
kafkaConnect: "string",
prometheus: "string",
},
staticIps: "string",
},
maintenanceWindowDow: "string",
maintenanceWindowTime: "string",
additionalDiskSpace: "string",
diskSpace: "string",
projectVpcId: "string",
serviceIntegrations: [{
integrationType: "string",
sourceServiceName: "string",
}],
cloudName: "string",
staticIps: ["string"],
tags: [{
key: "string",
value: "string",
}],
terminationProtection: false,
});
type: aiven:KafkaConnect
properties:
additionalDiskSpace: string
cloudName: string
diskSpace: string
kafkaConnectUserConfig:
additionalBackupRegions: string
ipFilterObjects:
- description: string
network: string
ipFilters:
- string
kafkaConnect:
connectorClientConfigOverridePolicy: string
consumerAutoOffsetReset: string
consumerFetchMaxBytes: string
consumerIsolationLevel: string
consumerMaxPartitionFetchBytes: string
consumerMaxPollIntervalMs: string
consumerMaxPollRecords: string
offsetFlushIntervalMs: string
offsetFlushTimeoutMs: string
producerCompressionType: string
producerMaxRequestSize: string
sessionTimeoutMs: string
privateAccess:
kafkaConnect: string
prometheus: string
privatelinkAccess:
jolokia: string
kafkaConnect: string
prometheus: string
publicAccess:
kafkaConnect: string
prometheus: string
staticIps: string
maintenanceWindowDow: string
maintenanceWindowTime: string
plan: string
project: string
projectVpcId: string
serviceIntegrations:
- integrationType: string
sourceServiceName: string
serviceName: string
staticIps:
- string
tags:
- key: string
value: string
terminationProtection: false
KafkaConnect 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 KafkaConnect resource accepts the following input properties:
- Project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - Disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Kafka
Connect KafkaUser Config Connect Kafka Connect User Config - KafkaConnect user configurable settings
- Maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to
store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - Project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Integrations List<KafkaConnect Service Integration> - Service integrations to specify when creating a service. Not applied after initial service creation
- Static
Ips List<string> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
List<Kafka
Connect Tag> - Tags are key-value pairs that allow you to categorize services.
- Termination
Protection bool - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- Project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - Disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Kafka
Connect KafkaUser Config Connect Kafka Connect User Config Args - KafkaConnect user configurable settings
- Maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to
store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - Project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Integrations []KafkaConnect Service Integration Args - Service integrations to specify when creating a service. Not applied after initial service creation
- Static
Ips []string - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
[]Kafka
Connect Tag Args - Tags are key-value pairs that allow you to categorize services.
- Termination
Protection bool - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- project String
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- service
Name String - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- additional
Disk StringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name String - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - disk
Space String - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- kafka
Connect KafkaUser Config Connect Kafka Connect User Config - KafkaConnect user configurable settings
- maintenance
Window StringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window StringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan String
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to
store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project
Vpc StringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Integrations List<KafkaConnect Service Integration> - Service integrations to specify when creating a service. Not applied after initial service creation
- static
Ips List<String> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
List<Kafka
Connect Tag> - Tags are key-value pairs that allow you to categorize services.
- termination
Protection Boolean - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- kafka
Connect KafkaUser Config Connect Kafka Connect User Config - KafkaConnect user configurable settings
- maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to
store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Integrations KafkaConnect Service Integration[] - Service integrations to specify when creating a service. Not applied after initial service creation
- static
Ips string[] - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
Kafka
Connect Tag[] - Tags are key-value pairs that allow you to categorize services.
- termination
Protection boolean - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- project str
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- service_
name str - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- additional_
disk_ strspace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud_
name str - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - disk_
space str - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- kafka_
connect_ Kafkauser_ config Connect Kafka Connect User Config Args - KafkaConnect user configurable settings
- maintenance_
window_ strdow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance_
window_ strtime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan str
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to
store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project_
vpc_ strid - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service_
integrations Sequence[KafkaConnect Service Integration Args] - Service integrations to specify when creating a service. Not applied after initial service creation
- static_
ips Sequence[str] - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
Sequence[Kafka
Connect Tag Args] - Tags are key-value pairs that allow you to categorize services.
- termination_
protection bool - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- project String
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- service
Name String - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- additional
Disk StringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name String - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - disk
Space String - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- kafka
Connect Property MapUser Config - KafkaConnect user configurable settings
- maintenance
Window StringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window StringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan String
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to
store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project
Vpc StringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Integrations List<Property Map> - Service integrations to specify when creating a service. Not applied after initial service creation
- static
Ips List<String> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- List<Property Map>
- Tags are key-value pairs that allow you to categorize services.
- termination
Protection Boolean - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
Outputs
All input properties are implicitly available as output properties. Additionally, the KafkaConnect resource produces the following output properties:
- Components
List<Kafka
Connect Component> - Service component information objects
- Disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- Disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project.
Its also the minimum value for
disk_space - Disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the
project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - Disk
Space stringUsed - Disk space that service is currently using
- Id string
- The provider-assigned unique ID for this managed resource.
- Kafka
Connect List<KafkaServer Connect Kafka Connect> - Kafka Connect server provided values
- Service
Host string - The hostname of the service.
- Service
Password string - Password used for connecting to the service, if applicable
- Service
Port int - The port of the service
- Service
Type string - Aiven internal service type code
- Service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- Service
Username string - Username used for connecting to the service, if applicable
- State string
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING
- Components
[]Kafka
Connect Component - Service component information objects
- Disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- Disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project.
Its also the minimum value for
disk_space - Disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the
project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - Disk
Space stringUsed - Disk space that service is currently using
- Id string
- The provider-assigned unique ID for this managed resource.
- Kafka
Connects []KafkaConnect Kafka Connect - Kafka Connect server provided values
- Service
Host string - The hostname of the service.
- Service
Password string - Password used for connecting to the service, if applicable
- Service
Port int - The port of the service
- Service
Type string - Aiven internal service type code
- Service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- Service
Username string - Username used for connecting to the service, if applicable
- State string
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING
- components
List<Kafka
Connect Component> - Service component information objects
- disk
Space StringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space StringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project.
Its also the minimum value for
disk_space - disk
Space StringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the
project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk
Space StringUsed - Disk space that service is currently using
- id String
- The provider-assigned unique ID for this managed resource.
- kafka
Connects List<KafkaConnect Kafka Connect> - Kafka Connect server provided values
- service
Host String - The hostname of the service.
- service
Password String - Password used for connecting to the service, if applicable
- service
Port Integer - The port of the service
- service
Type String - Aiven internal service type code
- service
Uri String - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username String - Username used for connecting to the service, if applicable
- state String
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING
- components
Kafka
Connect Component[] - Service component information objects
- disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project.
Its also the minimum value for
disk_space - disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the
project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk
Space stringUsed - Disk space that service is currently using
- id string
- The provider-assigned unique ID for this managed resource.
- kafka
Connects KafkaConnect Kafka Connect[] - Kafka Connect server provided values
- service
Host string - The hostname of the service.
- service
Password string - Password used for connecting to the service, if applicable
- service
Port number - The port of the service
- service
Type string - Aiven internal service type code
- service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username string - Username used for connecting to the service, if applicable
- state string
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING
- components
Sequence[Kafka
Connect Component] - Service component information objects
- disk_
space_ strcap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk_
space_ strdefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project.
Its also the minimum value for
disk_space - disk_
space_ strstep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the
project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk_
space_ strused - Disk space that service is currently using
- id str
- The provider-assigned unique ID for this managed resource.
- kafka_
connects Sequence[KafkaConnect Kafka Connect] - Kafka Connect server provided values
- service_
host str - The hostname of the service.
- service_
password str - Password used for connecting to the service, if applicable
- service_
port int - The port of the service
- service_
type str - Aiven internal service type code
- service_
uri str - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service_
username str - Username used for connecting to the service, if applicable
- state str
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING
- components List<Property Map>
- Service component information objects
- disk
Space StringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space StringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project.
Its also the minimum value for
disk_space - disk
Space StringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the
project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk
Space StringUsed - Disk space that service is currently using
- id String
- The provider-assigned unique ID for this managed resource.
- kafka
Connects List<Property Map> - Kafka Connect server provided values
- service
Host String - The hostname of the service.
- service
Password String - Password used for connecting to the service, if applicable
- service
Port Number - The port of the service
- service
Type String - Aiven internal service type code
- service
Uri String - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username String - Username used for connecting to the service, if applicable
- state String
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING
Look up Existing KafkaConnect Resource
Get an existing KafkaConnect 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?: KafkaConnectState, opts?: CustomResourceOptions): KafkaConnect@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
additional_disk_space: Optional[str] = None,
cloud_name: Optional[str] = None,
components: Optional[Sequence[KafkaConnectComponentArgs]] = None,
disk_space: Optional[str] = None,
disk_space_cap: Optional[str] = None,
disk_space_default: Optional[str] = None,
disk_space_step: Optional[str] = None,
disk_space_used: Optional[str] = None,
kafka_connect_user_config: Optional[KafkaConnectKafkaConnectUserConfigArgs] = None,
kafka_connects: Optional[Sequence[KafkaConnectKafkaConnectArgs]] = None,
maintenance_window_dow: Optional[str] = None,
maintenance_window_time: Optional[str] = None,
plan: Optional[str] = None,
project: Optional[str] = None,
project_vpc_id: Optional[str] = None,
service_host: Optional[str] = None,
service_integrations: Optional[Sequence[KafkaConnectServiceIntegrationArgs]] = None,
service_name: Optional[str] = None,
service_password: Optional[str] = None,
service_port: Optional[int] = None,
service_type: Optional[str] = None,
service_uri: Optional[str] = None,
service_username: Optional[str] = None,
state: Optional[str] = None,
static_ips: Optional[Sequence[str]] = None,
tags: Optional[Sequence[KafkaConnectTagArgs]] = None,
termination_protection: Optional[bool] = None) -> KafkaConnectfunc GetKafkaConnect(ctx *Context, name string, id IDInput, state *KafkaConnectState, opts ...ResourceOption) (*KafkaConnect, error)public static KafkaConnect Get(string name, Input<string> id, KafkaConnectState? state, CustomResourceOptions? opts = null)public static KafkaConnect get(String name, Output<String> id, KafkaConnectState state, CustomResourceOptions options)resources: _: type: aiven:KafkaConnect 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.
- Additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - Components
List<Kafka
Connect Component> - Service component information objects
- Disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- Disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project.
Its also the minimum value for
disk_space - Disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the
project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - Disk
Space stringUsed - Disk space that service is currently using
- Kafka
Connect List<KafkaServer Connect Kafka Connect> - Kafka Connect server provided values
- Kafka
Connect KafkaUser Config Connect Kafka Connect User Config - KafkaConnect user configurable settings
- Maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to
store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - Project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Host string - The hostname of the service.
- Service
Integrations List<KafkaConnect Service Integration> - Service integrations to specify when creating a service. Not applied after initial service creation
- Service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Service
Password string - Password used for connecting to the service, if applicable
- Service
Port int - The port of the service
- Service
Type string - Aiven internal service type code
- Service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- Service
Username string - Username used for connecting to the service, if applicable
- State string
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING - Static
Ips List<string> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
List<Kafka
Connect Tag> - Tags are key-value pairs that allow you to categorize services.
- Termination
Protection bool - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- Additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - Components
[]Kafka
Connect Component Args - Service component information objects
- Disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- Disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- Disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project.
Its also the minimum value for
disk_space - Disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the
project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - Disk
Space stringUsed - Disk space that service is currently using
- Kafka
Connect KafkaUser Config Connect Kafka Connect User Config Args - KafkaConnect user configurable settings
- Kafka
Connects []KafkaConnect Kafka Connect Args - Kafka Connect server provided values
- Maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- Maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- Plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to
store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - Project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- Project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- Service
Host string - The hostname of the service.
- Service
Integrations []KafkaConnect Service Integration Args - Service integrations to specify when creating a service. Not applied after initial service creation
- Service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- Service
Password string - Password used for connecting to the service, if applicable
- Service
Port int - The port of the service
- Service
Type string - Aiven internal service type code
- Service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- Service
Username string - Username used for connecting to the service, if applicable
- State string
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING - Static
Ips []string - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
[]Kafka
Connect Tag Args - Tags are key-value pairs that allow you to categorize services.
- Termination
Protection bool - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- additional
Disk StringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name String - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - components
List<Kafka
Connect Component> - Service component information objects
- disk
Space String - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- disk
Space StringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space StringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project.
Its also the minimum value for
disk_space - disk
Space StringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the
project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk
Space StringUsed - Disk space that service is currently using
- kafka
Connect KafkaUser Config Connect Kafka Connect User Config - KafkaConnect user configurable settings
- kafka
Connects List<KafkaConnect Kafka Connect> - Kafka Connect server provided values
- maintenance
Window StringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window StringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan String
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to
store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project String
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- project
Vpc StringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Host String - The hostname of the service.
- service
Integrations List<KafkaConnect Service Integration> - Service integrations to specify when creating a service. Not applied after initial service creation
- service
Name String - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- service
Password String - Password used for connecting to the service, if applicable
- service
Port Integer - The port of the service
- service
Type String - Aiven internal service type code
- service
Uri String - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username String - Username used for connecting to the service, if applicable
- state String
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING - static
Ips List<String> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
List<Kafka
Connect Tag> - Tags are key-value pairs that allow you to categorize services.
- termination
Protection Boolean - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- additional
Disk stringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name string - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - components
Kafka
Connect Component[] - Service component information objects
- disk
Space string - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- disk
Space stringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space stringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project.
Its also the minimum value for
disk_space - disk
Space stringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the
project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk
Space stringUsed - Disk space that service is currently using
- kafka
Connect KafkaUser Config Connect Kafka Connect User Config - KafkaConnect user configurable settings
- kafka
Connects KafkaConnect Kafka Connect[] - Kafka Connect server provided values
- maintenance
Window stringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window stringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan string
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to
store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project string
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- project
Vpc stringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Host string - The hostname of the service.
- service
Integrations KafkaConnect Service Integration[] - Service integrations to specify when creating a service. Not applied after initial service creation
- service
Name string - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- service
Password string - Password used for connecting to the service, if applicable
- service
Port number - The port of the service
- service
Type string - Aiven internal service type code
- service
Uri string - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username string - Username used for connecting to the service, if applicable
- state string
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING - static
Ips string[] - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
Kafka
Connect Tag[] - Tags are key-value pairs that allow you to categorize services.
- termination
Protection boolean - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- additional_
disk_ strspace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud_
name str - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - components
Sequence[Kafka
Connect Component Args] - Service component information objects
- disk_
space str - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- disk_
space_ strcap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk_
space_ strdefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project.
Its also the minimum value for
disk_space - disk_
space_ strstep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the
project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk_
space_ strused - Disk space that service is currently using
- kafka_
connect_ Kafkauser_ config Connect Kafka Connect User Config Args - KafkaConnect user configurable settings
- kafka_
connects Sequence[KafkaConnect Kafka Connect Args] - Kafka Connect server provided values
- maintenance_
window_ strdow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance_
window_ strtime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan str
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to
store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project str
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- project_
vpc_ strid - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service_
host str - The hostname of the service.
- service_
integrations Sequence[KafkaConnect Service Integration Args] - Service integrations to specify when creating a service. Not applied after initial service creation
- service_
name str - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- service_
password str - Password used for connecting to the service, if applicable
- service_
port int - The port of the service
- service_
type str - Aiven internal service type code
- service_
uri str - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service_
username str - Username used for connecting to the service, if applicable
- state str
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING - static_
ips Sequence[str] - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
-
Sequence[Kafka
Connect Tag Args] - Tags are key-value pairs that allow you to categorize services.
- termination_
protection bool - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
- additional
Disk StringSpace - Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- cloud
Name String - Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is
created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud
provider name (
aws,azure,dogoogle,upcloud, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like here for Google and here for AWS. - components List<Property Map>
- Service component information objects
- disk
Space String - Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
- disk
Space StringCap - The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
- disk
Space StringDefault - The default disk space of the service, possible values depend on the service type, the cloud provider and the project.
Its also the minimum value for
disk_space - disk
Space StringStep - The default disk space step of the service, possible values depend on the service type, the cloud provider and the
project.
disk_spaceneeds to increment fromdisk_space_defaultby increments of this size. - disk
Space StringUsed - Disk space that service is currently using
- kafka
Connect Property MapUser Config - KafkaConnect user configurable settings
- kafka
Connects List<Property Map> - Kafka Connect server provided values
- maintenance
Window StringDow - Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
- maintenance
Window StringTime - Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
- plan String
- Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to
store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are
hobbyist,startup-x,business-xandpremium-xwherexis (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the Aiven pricing page. - project String
- Identifies the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
- project
Vpc StringId - Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
- service
Host String - The hostname of the service.
- service
Integrations List<Property Map> - Service integrations to specify when creating a service. Not applied after initial service creation
- service
Name String - Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
- service
Password String - Password used for connecting to the service, if applicable
- service
Port Number - The port of the service
- service
Type String - Aiven internal service type code
- service
Uri String - URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
- service
Username String - Username used for connecting to the service, if applicable
- state String
- Service state. One of
POWEROFF,REBALANCING,REBUILDINGorRUNNING - static
Ips List<String> - Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
- List<Property Map>
- Tags are key-value pairs that allow you to categorize services.
- termination
Protection Boolean - Prevents the service from being deleted. It is recommended to set this to
truefor all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
Supporting Types
KafkaConnectComponent, KafkaConnectComponentArgs
KafkaConnectKafkaConnectUserConfig, KafkaConnectKafkaConnectUserConfigArgs
- Additional
Backup stringRegions - Ip
Filter List<KafkaObjects Connect Kafka Connect User Config Ip Filter Object> - Ip
Filters List<string> - Kafka
Connect KafkaConnect Kafka Connect User Config Kafka Connect - Private
Access KafkaConnect Kafka Connect User Config Private Access - Privatelink
Access KafkaConnect Kafka Connect User Config Privatelink Access - Public
Access KafkaConnect Kafka Connect User Config Public Access - Static
Ips string
- Additional
Backup stringRegions - Ip
Filter []KafkaObjects Connect Kafka Connect User Config Ip Filter Object - Ip
Filters []string - Kafka
Connect KafkaConnect Kafka Connect User Config Kafka Connect - Private
Access KafkaConnect Kafka Connect User Config Private Access - Privatelink
Access KafkaConnect Kafka Connect User Config Privatelink Access - Public
Access KafkaConnect Kafka Connect User Config Public Access - Static
Ips string
- additional
Backup StringRegions - ip
Filter List<KafkaObjects Connect Kafka Connect User Config Ip Filter Object> - ip
Filters List<String> - kafka
Connect KafkaConnect Kafka Connect User Config Kafka Connect - private
Access KafkaConnect Kafka Connect User Config Private Access - privatelink
Access KafkaConnect Kafka Connect User Config Privatelink Access - public
Access KafkaConnect Kafka Connect User Config Public Access - static
Ips String
- additional
Backup stringRegions - ip
Filter KafkaObjects Connect Kafka Connect User Config Ip Filter Object[] - ip
Filters string[] - kafka
Connect KafkaConnect Kafka Connect User Config Kafka Connect - private
Access KafkaConnect Kafka Connect User Config Private Access - privatelink
Access KafkaConnect Kafka Connect User Config Privatelink Access - public
Access KafkaConnect Kafka Connect User Config Public Access - static
Ips string
- additional_
backup_ strregions - ip_
filter_ Sequence[Kafkaobjects Connect Kafka Connect User Config Ip Filter Object] - ip_
filters Sequence[str] - kafka_
connect KafkaConnect Kafka Connect User Config Kafka Connect - private_
access KafkaConnect Kafka Connect User Config Private Access - privatelink_
access KafkaConnect Kafka Connect User Config Privatelink Access - public_
access KafkaConnect Kafka Connect User Config Public Access - static_
ips str
KafkaConnectKafkaConnectUserConfigIpFilterObject, KafkaConnectKafkaConnectUserConfigIpFilterObjectArgs
- Description string
- Network string
- Description string
- Network string
- description String
- network String
- description string
- network string
- description str
- network str
- description String
- network String
KafkaConnectKafkaConnectUserConfigKafkaConnect, KafkaConnectKafkaConnectUserConfigKafkaConnectArgs
- Connector
Client stringConfig Override Policy - Consumer
Auto stringOffset Reset - Consumer
Fetch stringMax Bytes - Consumer
Isolation stringLevel - Consumer
Max stringPartition Fetch Bytes - Consumer
Max stringPoll Interval Ms - Consumer
Max stringPoll Records - Offset
Flush stringInterval Ms - Offset
Flush stringTimeout Ms - Producer
Compression stringType - Producer
Max stringRequest Size - Session
Timeout stringMs
- Connector
Client stringConfig Override Policy - Consumer
Auto stringOffset Reset - Consumer
Fetch stringMax Bytes - Consumer
Isolation stringLevel - Consumer
Max stringPartition Fetch Bytes - Consumer
Max stringPoll Interval Ms - Consumer
Max stringPoll Records - Offset
Flush stringInterval Ms - Offset
Flush stringTimeout Ms - Producer
Compression stringType - Producer
Max stringRequest Size - Session
Timeout stringMs
- connector
Client StringConfig Override Policy - consumer
Auto StringOffset Reset - consumer
Fetch StringMax Bytes - consumer
Isolation StringLevel - consumer
Max StringPartition Fetch Bytes - consumer
Max StringPoll Interval Ms - consumer
Max StringPoll Records - offset
Flush StringInterval Ms - offset
Flush StringTimeout Ms - producer
Compression StringType - producer
Max StringRequest Size - session
Timeout StringMs
- connector
Client stringConfig Override Policy - consumer
Auto stringOffset Reset - consumer
Fetch stringMax Bytes - consumer
Isolation stringLevel - consumer
Max stringPartition Fetch Bytes - consumer
Max stringPoll Interval Ms - consumer
Max stringPoll Records - offset
Flush stringInterval Ms - offset
Flush stringTimeout Ms - producer
Compression stringType - producer
Max stringRequest Size - session
Timeout stringMs
- connector_
client_ strconfig_ override_ policy - consumer_
auto_ stroffset_ reset - consumer_
fetch_ strmax_ bytes - consumer_
isolation_ strlevel - consumer_
max_ strpartition_ fetch_ bytes - consumer_
max_ strpoll_ interval_ ms - consumer_
max_ strpoll_ records - offset_
flush_ strinterval_ ms - offset_
flush_ strtimeout_ ms - producer_
compression_ strtype - producer_
max_ strrequest_ size - session_
timeout_ strms
- connector
Client StringConfig Override Policy - consumer
Auto StringOffset Reset - consumer
Fetch StringMax Bytes - consumer
Isolation StringLevel - consumer
Max StringPartition Fetch Bytes - consumer
Max StringPoll Interval Ms - consumer
Max StringPoll Records - offset
Flush StringInterval Ms - offset
Flush StringTimeout Ms - producer
Compression StringType - producer
Max StringRequest Size - session
Timeout StringMs
KafkaConnectKafkaConnectUserConfigPrivateAccess, KafkaConnectKafkaConnectUserConfigPrivateAccessArgs
- Kafka
Connect string - Prometheus string
- Kafka
Connect string - Prometheus string
- kafka
Connect String - prometheus String
- kafka
Connect string - prometheus string
- kafka_
connect str - prometheus str
- kafka
Connect String - prometheus String
KafkaConnectKafkaConnectUserConfigPrivatelinkAccess, KafkaConnectKafkaConnectUserConfigPrivatelinkAccessArgs
- Jolokia string
- Kafka
Connect string - Prometheus string
- Jolokia string
- Kafka
Connect string - Prometheus string
- jolokia String
- kafka
Connect String - prometheus String
- jolokia string
- kafka
Connect string - prometheus string
- jolokia str
- kafka_
connect str - prometheus str
- jolokia String
- kafka
Connect String - prometheus String
KafkaConnectKafkaConnectUserConfigPublicAccess, KafkaConnectKafkaConnectUserConfigPublicAccessArgs
- Kafka
Connect string - Prometheus string
- Kafka
Connect string - Prometheus string
- kafka
Connect String - prometheus String
- kafka
Connect string - prometheus string
- kafka_
connect str - prometheus str
- kafka
Connect String - prometheus String
KafkaConnectServiceIntegration, KafkaConnectServiceIntegrationArgs
- Integration
Type string - Source
Service stringName
- Integration
Type string - Source
Service stringName
- integration
Type String - source
Service StringName
- integration
Type string - source
Service stringName
- integration
Type String - source
Service StringName
KafkaConnectTag, KafkaConnectTagArgs
Import
$ pulumi import aiven:index/kafkaConnect:KafkaConnect kc1 project/service_name
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 Monday, Mar 9, 2026 by Pulumi
