We recommend using Azure Native.
azure.hdinsight.KafkaCluster
Explore with Pulumi AI
Manages a HDInsight Kafka Cluster.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleAccount = new azure.storage.Account("example", {
name: "hdinsightstor",
resourceGroupName: example.name,
location: example.location,
accountTier: "Standard",
accountReplicationType: "LRS",
});
const exampleContainer = new azure.storage.Container("example", {
name: "hdinsight",
storageAccountName: exampleAccount.name,
containerAccessType: "private",
});
const exampleKafkaCluster = new azure.hdinsight.KafkaCluster("example", {
name: "example-hdicluster",
resourceGroupName: example.name,
location: example.location,
clusterVersion: "4.0",
tier: "Standard",
componentVersion: {
kafka: "2.1",
},
gateway: {
username: "acctestusrgw",
password: "Password123!",
},
storageAccounts: [{
storageContainerId: exampleContainer.id,
storageAccountKey: exampleAccount.primaryAccessKey,
isDefault: true,
}],
roles: {
headNode: {
vmSize: "Standard_D3_V2",
username: "acctestusrvm",
password: "AccTestvdSC4daf986!",
},
workerNode: {
vmSize: "Standard_D3_V2",
username: "acctestusrvm",
password: "AccTestvdSC4daf986!",
numberOfDisksPerNode: 3,
targetInstanceCount: 3,
},
zookeeperNode: {
vmSize: "Standard_D3_V2",
username: "acctestusrvm",
password: "AccTestvdSC4daf986!",
},
},
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_account = azure.storage.Account("example",
name="hdinsightstor",
resource_group_name=example.name,
location=example.location,
account_tier="Standard",
account_replication_type="LRS")
example_container = azure.storage.Container("example",
name="hdinsight",
storage_account_name=example_account.name,
container_access_type="private")
example_kafka_cluster = azure.hdinsight.KafkaCluster("example",
name="example-hdicluster",
resource_group_name=example.name,
location=example.location,
cluster_version="4.0",
tier="Standard",
component_version=azure.hdinsight.KafkaClusterComponentVersionArgs(
kafka="2.1",
),
gateway=azure.hdinsight.KafkaClusterGatewayArgs(
username="acctestusrgw",
password="Password123!",
),
storage_accounts=[azure.hdinsight.KafkaClusterStorageAccountArgs(
storage_container_id=example_container.id,
storage_account_key=example_account.primary_access_key,
is_default=True,
)],
roles=azure.hdinsight.KafkaClusterRolesArgs(
head_node=azure.hdinsight.KafkaClusterRolesHeadNodeArgs(
vm_size="Standard_D3_V2",
username="acctestusrvm",
password="AccTestvdSC4daf986!",
),
worker_node=azure.hdinsight.KafkaClusterRolesWorkerNodeArgs(
vm_size="Standard_D3_V2",
username="acctestusrvm",
password="AccTestvdSC4daf986!",
number_of_disks_per_node=3,
target_instance_count=3,
),
zookeeper_node=azure.hdinsight.KafkaClusterRolesZookeeperNodeArgs(
vm_size="Standard_D3_V2",
username="acctestusrvm",
password="AccTestvdSC4daf986!",
),
))
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/hdinsight"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/storage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
Name: pulumi.String("hdinsightstor"),
ResourceGroupName: example.Name,
Location: example.Location,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("LRS"),
})
if err != nil {
return err
}
exampleContainer, err := storage.NewContainer(ctx, "example", &storage.ContainerArgs{
Name: pulumi.String("hdinsight"),
StorageAccountName: exampleAccount.Name,
ContainerAccessType: pulumi.String("private"),
})
if err != nil {
return err
}
_, err = hdinsight.NewKafkaCluster(ctx, "example", &hdinsight.KafkaClusterArgs{
Name: pulumi.String("example-hdicluster"),
ResourceGroupName: example.Name,
Location: example.Location,
ClusterVersion: pulumi.String("4.0"),
Tier: pulumi.String("Standard"),
ComponentVersion: &hdinsight.KafkaClusterComponentVersionArgs{
Kafka: pulumi.String("2.1"),
},
Gateway: &hdinsight.KafkaClusterGatewayArgs{
Username: pulumi.String("acctestusrgw"),
Password: pulumi.String("Password123!"),
},
StorageAccounts: hdinsight.KafkaClusterStorageAccountArray{
&hdinsight.KafkaClusterStorageAccountArgs{
StorageContainerId: exampleContainer.ID(),
StorageAccountKey: exampleAccount.PrimaryAccessKey,
IsDefault: pulumi.Bool(true),
},
},
Roles: &hdinsight.KafkaClusterRolesArgs{
HeadNode: &hdinsight.KafkaClusterRolesHeadNodeArgs{
VmSize: pulumi.String("Standard_D3_V2"),
Username: pulumi.String("acctestusrvm"),
Password: pulumi.String("AccTestvdSC4daf986!"),
},
WorkerNode: &hdinsight.KafkaClusterRolesWorkerNodeArgs{
VmSize: pulumi.String("Standard_D3_V2"),
Username: pulumi.String("acctestusrvm"),
Password: pulumi.String("AccTestvdSC4daf986!"),
NumberOfDisksPerNode: pulumi.Int(3),
TargetInstanceCount: pulumi.Int(3),
},
ZookeeperNode: &hdinsight.KafkaClusterRolesZookeeperNodeArgs{
VmSize: pulumi.String("Standard_D3_V2"),
Username: pulumi.String("acctestusrvm"),
Password: pulumi.String("AccTestvdSC4daf986!"),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleAccount = new Azure.Storage.Account("example", new()
{
Name = "hdinsightstor",
ResourceGroupName = example.Name,
Location = example.Location,
AccountTier = "Standard",
AccountReplicationType = "LRS",
});
var exampleContainer = new Azure.Storage.Container("example", new()
{
Name = "hdinsight",
StorageAccountName = exampleAccount.Name,
ContainerAccessType = "private",
});
var exampleKafkaCluster = new Azure.HDInsight.KafkaCluster("example", new()
{
Name = "example-hdicluster",
ResourceGroupName = example.Name,
Location = example.Location,
ClusterVersion = "4.0",
Tier = "Standard",
ComponentVersion = new Azure.HDInsight.Inputs.KafkaClusterComponentVersionArgs
{
Kafka = "2.1",
},
Gateway = new Azure.HDInsight.Inputs.KafkaClusterGatewayArgs
{
Username = "acctestusrgw",
Password = "Password123!",
},
StorageAccounts = new[]
{
new Azure.HDInsight.Inputs.KafkaClusterStorageAccountArgs
{
StorageContainerId = exampleContainer.Id,
StorageAccountKey = exampleAccount.PrimaryAccessKey,
IsDefault = true,
},
},
Roles = new Azure.HDInsight.Inputs.KafkaClusterRolesArgs
{
HeadNode = new Azure.HDInsight.Inputs.KafkaClusterRolesHeadNodeArgs
{
VmSize = "Standard_D3_V2",
Username = "acctestusrvm",
Password = "AccTestvdSC4daf986!",
},
WorkerNode = new Azure.HDInsight.Inputs.KafkaClusterRolesWorkerNodeArgs
{
VmSize = "Standard_D3_V2",
Username = "acctestusrvm",
Password = "AccTestvdSC4daf986!",
NumberOfDisksPerNode = 3,
TargetInstanceCount = 3,
},
ZookeeperNode = new Azure.HDInsight.Inputs.KafkaClusterRolesZookeeperNodeArgs
{
VmSize = "Standard_D3_V2",
Username = "acctestusrvm",
Password = "AccTestvdSC4daf986!",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.storage.Container;
import com.pulumi.azure.storage.ContainerArgs;
import com.pulumi.azure.hdinsight.KafkaCluster;
import com.pulumi.azure.hdinsight.KafkaClusterArgs;
import com.pulumi.azure.hdinsight.inputs.KafkaClusterComponentVersionArgs;
import com.pulumi.azure.hdinsight.inputs.KafkaClusterGatewayArgs;
import com.pulumi.azure.hdinsight.inputs.KafkaClusterStorageAccountArgs;
import com.pulumi.azure.hdinsight.inputs.KafkaClusterRolesArgs;
import com.pulumi.azure.hdinsight.inputs.KafkaClusterRolesHeadNodeArgs;
import com.pulumi.azure.hdinsight.inputs.KafkaClusterRolesWorkerNodeArgs;
import com.pulumi.azure.hdinsight.inputs.KafkaClusterRolesZookeeperNodeArgs;
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 example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.name("hdinsightstor")
.resourceGroupName(example.name())
.location(example.location())
.accountTier("Standard")
.accountReplicationType("LRS")
.build());
var exampleContainer = new Container("exampleContainer", ContainerArgs.builder()
.name("hdinsight")
.storageAccountName(exampleAccount.name())
.containerAccessType("private")
.build());
var exampleKafkaCluster = new KafkaCluster("exampleKafkaCluster", KafkaClusterArgs.builder()
.name("example-hdicluster")
.resourceGroupName(example.name())
.location(example.location())
.clusterVersion("4.0")
.tier("Standard")
.componentVersion(KafkaClusterComponentVersionArgs.builder()
.kafka("2.1")
.build())
.gateway(KafkaClusterGatewayArgs.builder()
.username("acctestusrgw")
.password("Password123!")
.build())
.storageAccounts(KafkaClusterStorageAccountArgs.builder()
.storageContainerId(exampleContainer.id())
.storageAccountKey(exampleAccount.primaryAccessKey())
.isDefault(true)
.build())
.roles(KafkaClusterRolesArgs.builder()
.headNode(KafkaClusterRolesHeadNodeArgs.builder()
.vmSize("Standard_D3_V2")
.username("acctestusrvm")
.password("AccTestvdSC4daf986!")
.build())
.workerNode(KafkaClusterRolesWorkerNodeArgs.builder()
.vmSize("Standard_D3_V2")
.username("acctestusrvm")
.password("AccTestvdSC4daf986!")
.numberOfDisksPerNode(3)
.targetInstanceCount(3)
.build())
.zookeeperNode(KafkaClusterRolesZookeeperNodeArgs.builder()
.vmSize("Standard_D3_V2")
.username("acctestusrvm")
.password("AccTestvdSC4daf986!")
.build())
.build())
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleAccount:
type: azure:storage:Account
name: example
properties:
name: hdinsightstor
resourceGroupName: ${example.name}
location: ${example.location}
accountTier: Standard
accountReplicationType: LRS
exampleContainer:
type: azure:storage:Container
name: example
properties:
name: hdinsight
storageAccountName: ${exampleAccount.name}
containerAccessType: private
exampleKafkaCluster:
type: azure:hdinsight:KafkaCluster
name: example
properties:
name: example-hdicluster
resourceGroupName: ${example.name}
location: ${example.location}
clusterVersion: '4.0'
tier: Standard
componentVersion:
kafka: '2.1'
gateway:
username: acctestusrgw
password: Password123!
storageAccounts:
- storageContainerId: ${exampleContainer.id}
storageAccountKey: ${exampleAccount.primaryAccessKey}
isDefault: true
roles:
headNode:
vmSize: Standard_D3_V2
username: acctestusrvm
password: AccTestvdSC4daf986!
workerNode:
vmSize: Standard_D3_V2
username: acctestusrvm
password: AccTestvdSC4daf986!
numberOfDisksPerNode: 3
targetInstanceCount: 3
zookeeperNode:
vmSize: Standard_D3_V2
username: acctestusrvm
password: AccTestvdSC4daf986!
Create KafkaCluster Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KafkaCluster(name: string, args: KafkaClusterArgs, opts?: CustomResourceOptions);
@overload
def KafkaCluster(resource_name: str,
args: KafkaClusterArgs,
opts: Optional[ResourceOptions] = None)
@overload
def KafkaCluster(resource_name: str,
opts: Optional[ResourceOptions] = None,
gateway: Optional[KafkaClusterGatewayArgs] = None,
component_version: Optional[KafkaClusterComponentVersionArgs] = None,
tier: Optional[str] = None,
roles: Optional[KafkaClusterRolesArgs] = None,
resource_group_name: Optional[str] = None,
cluster_version: Optional[str] = None,
extension: Optional[KafkaClusterExtensionArgs] = None,
encryption_in_transit_enabled: Optional[bool] = None,
metastores: Optional[KafkaClusterMetastoresArgs] = None,
monitor: Optional[KafkaClusterMonitorArgs] = None,
name: Optional[str] = None,
network: Optional[KafkaClusterNetworkArgs] = None,
private_link_configuration: Optional[KafkaClusterPrivateLinkConfigurationArgs] = None,
location: Optional[str] = None,
rest_proxy: Optional[KafkaClusterRestProxyArgs] = None,
disk_encryptions: Optional[Sequence[KafkaClusterDiskEncryptionArgs]] = None,
security_profile: Optional[KafkaClusterSecurityProfileArgs] = None,
storage_account_gen2: Optional[KafkaClusterStorageAccountGen2Args] = None,
storage_accounts: Optional[Sequence[KafkaClusterStorageAccountArgs]] = None,
tags: Optional[Mapping[str, str]] = None,
compute_isolation: Optional[KafkaClusterComputeIsolationArgs] = None,
tls_min_version: Optional[str] = None)
func NewKafkaCluster(ctx *Context, name string, args KafkaClusterArgs, opts ...ResourceOption) (*KafkaCluster, error)
public KafkaCluster(string name, KafkaClusterArgs args, CustomResourceOptions? opts = null)
public KafkaCluster(String name, KafkaClusterArgs args)
public KafkaCluster(String name, KafkaClusterArgs args, CustomResourceOptions options)
type: azure:hdinsight:KafkaCluster
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 KafkaClusterArgs
- 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 KafkaClusterArgs
- 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 KafkaClusterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KafkaClusterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KafkaClusterArgs
- 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 kafkaClusterResource = new Azure.HDInsight.KafkaCluster("kafkaClusterResource", new()
{
Gateway = new Azure.HDInsight.Inputs.KafkaClusterGatewayArgs
{
Password = "string",
Username = "string",
},
ComponentVersion = new Azure.HDInsight.Inputs.KafkaClusterComponentVersionArgs
{
Kafka = "string",
},
Tier = "string",
ResourceGroupName = "string",
ClusterVersion = "string",
Extension = new Azure.HDInsight.Inputs.KafkaClusterExtensionArgs
{
LogAnalyticsWorkspaceId = "string",
PrimaryKey = "string",
},
EncryptionInTransitEnabled = false,
Metastores = new Azure.HDInsight.Inputs.KafkaClusterMetastoresArgs
{
Ambari = new Azure.HDInsight.Inputs.KafkaClusterMetastoresAmbariArgs
{
DatabaseName = "string",
Password = "string",
Server = "string",
Username = "string",
},
Hive = new Azure.HDInsight.Inputs.KafkaClusterMetastoresHiveArgs
{
DatabaseName = "string",
Password = "string",
Server = "string",
Username = "string",
},
Oozie = new Azure.HDInsight.Inputs.KafkaClusterMetastoresOozieArgs
{
DatabaseName = "string",
Password = "string",
Server = "string",
Username = "string",
},
},
Monitor = new Azure.HDInsight.Inputs.KafkaClusterMonitorArgs
{
LogAnalyticsWorkspaceId = "string",
PrimaryKey = "string",
},
Name = "string",
Network = new Azure.HDInsight.Inputs.KafkaClusterNetworkArgs
{
ConnectionDirection = "string",
PrivateLinkEnabled = false,
},
PrivateLinkConfiguration = new Azure.HDInsight.Inputs.KafkaClusterPrivateLinkConfigurationArgs
{
GroupId = "string",
IpConfiguration = new Azure.HDInsight.Inputs.KafkaClusterPrivateLinkConfigurationIpConfigurationArgs
{
Name = "string",
Primary = false,
PrivateIpAddress = "string",
PrivateIpAllocationMethod = "string",
SubnetId = "string",
},
Name = "string",
},
Location = "string",
RestProxy = new Azure.HDInsight.Inputs.KafkaClusterRestProxyArgs
{
SecurityGroupId = "string",
SecurityGroupName = "string",
},
DiskEncryptions = new[]
{
new Azure.HDInsight.Inputs.KafkaClusterDiskEncryptionArgs
{
EncryptionAlgorithm = "string",
EncryptionAtHostEnabled = false,
KeyVaultKeyId = "string",
KeyVaultManagedIdentityId = "string",
},
},
SecurityProfile = new Azure.HDInsight.Inputs.KafkaClusterSecurityProfileArgs
{
AaddsResourceId = "string",
DomainName = "string",
DomainUserPassword = "string",
DomainUsername = "string",
LdapsUrls = new[]
{
"string",
},
MsiResourceId = "string",
ClusterUsersGroupDns = new[]
{
"string",
},
},
StorageAccountGen2 = new Azure.HDInsight.Inputs.KafkaClusterStorageAccountGen2Args
{
FilesystemId = "string",
IsDefault = false,
ManagedIdentityResourceId = "string",
StorageResourceId = "string",
},
StorageAccounts = new[]
{
new Azure.HDInsight.Inputs.KafkaClusterStorageAccountArgs
{
IsDefault = false,
StorageAccountKey = "string",
StorageContainerId = "string",
StorageResourceId = "string",
},
},
Tags =
{
{ "string", "string" },
},
ComputeIsolation = new Azure.HDInsight.Inputs.KafkaClusterComputeIsolationArgs
{
ComputeIsolationEnabled = false,
HostSku = "string",
},
TlsMinVersion = "string",
});
example, err := hdinsight.NewKafkaCluster(ctx, "kafkaClusterResource", &hdinsight.KafkaClusterArgs{
Gateway: &hdinsight.KafkaClusterGatewayArgs{
Password: pulumi.String("string"),
Username: pulumi.String("string"),
},
ComponentVersion: &hdinsight.KafkaClusterComponentVersionArgs{
Kafka: pulumi.String("string"),
},
Tier: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ClusterVersion: pulumi.String("string"),
Extension: &hdinsight.KafkaClusterExtensionArgs{
LogAnalyticsWorkspaceId: pulumi.String("string"),
PrimaryKey: pulumi.String("string"),
},
EncryptionInTransitEnabled: pulumi.Bool(false),
Metastores: &hdinsight.KafkaClusterMetastoresArgs{
Ambari: &hdinsight.KafkaClusterMetastoresAmbariArgs{
DatabaseName: pulumi.String("string"),
Password: pulumi.String("string"),
Server: pulumi.String("string"),
Username: pulumi.String("string"),
},
Hive: &hdinsight.KafkaClusterMetastoresHiveArgs{
DatabaseName: pulumi.String("string"),
Password: pulumi.String("string"),
Server: pulumi.String("string"),
Username: pulumi.String("string"),
},
Oozie: &hdinsight.KafkaClusterMetastoresOozieArgs{
DatabaseName: pulumi.String("string"),
Password: pulumi.String("string"),
Server: pulumi.String("string"),
Username: pulumi.String("string"),
},
},
Monitor: &hdinsight.KafkaClusterMonitorArgs{
LogAnalyticsWorkspaceId: pulumi.String("string"),
PrimaryKey: pulumi.String("string"),
},
Name: pulumi.String("string"),
Network: &hdinsight.KafkaClusterNetworkArgs{
ConnectionDirection: pulumi.String("string"),
PrivateLinkEnabled: pulumi.Bool(false),
},
PrivateLinkConfiguration: &hdinsight.KafkaClusterPrivateLinkConfigurationArgs{
GroupId: pulumi.String("string"),
IpConfiguration: &hdinsight.KafkaClusterPrivateLinkConfigurationIpConfigurationArgs{
Name: pulumi.String("string"),
Primary: pulumi.Bool(false),
PrivateIpAddress: pulumi.String("string"),
PrivateIpAllocationMethod: pulumi.String("string"),
SubnetId: pulumi.String("string"),
},
Name: pulumi.String("string"),
},
Location: pulumi.String("string"),
RestProxy: &hdinsight.KafkaClusterRestProxyArgs{
SecurityGroupId: pulumi.String("string"),
SecurityGroupName: pulumi.String("string"),
},
DiskEncryptions: hdinsight.KafkaClusterDiskEncryptionArray{
&hdinsight.KafkaClusterDiskEncryptionArgs{
EncryptionAlgorithm: pulumi.String("string"),
EncryptionAtHostEnabled: pulumi.Bool(false),
KeyVaultKeyId: pulumi.String("string"),
KeyVaultManagedIdentityId: pulumi.String("string"),
},
},
SecurityProfile: &hdinsight.KafkaClusterSecurityProfileArgs{
AaddsResourceId: pulumi.String("string"),
DomainName: pulumi.String("string"),
DomainUserPassword: pulumi.String("string"),
DomainUsername: pulumi.String("string"),
LdapsUrls: pulumi.StringArray{
pulumi.String("string"),
},
MsiResourceId: pulumi.String("string"),
ClusterUsersGroupDns: pulumi.StringArray{
pulumi.String("string"),
},
},
StorageAccountGen2: &hdinsight.KafkaClusterStorageAccountGen2Args{
FilesystemId: pulumi.String("string"),
IsDefault: pulumi.Bool(false),
ManagedIdentityResourceId: pulumi.String("string"),
StorageResourceId: pulumi.String("string"),
},
StorageAccounts: hdinsight.KafkaClusterStorageAccountArray{
&hdinsight.KafkaClusterStorageAccountArgs{
IsDefault: pulumi.Bool(false),
StorageAccountKey: pulumi.String("string"),
StorageContainerId: pulumi.String("string"),
StorageResourceId: pulumi.String("string"),
},
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
ComputeIsolation: &hdinsight.KafkaClusterComputeIsolationArgs{
ComputeIsolationEnabled: pulumi.Bool(false),
HostSku: pulumi.String("string"),
},
TlsMinVersion: pulumi.String("string"),
})
var kafkaClusterResource = new KafkaCluster("kafkaClusterResource", KafkaClusterArgs.builder()
.gateway(KafkaClusterGatewayArgs.builder()
.password("string")
.username("string")
.build())
.componentVersion(KafkaClusterComponentVersionArgs.builder()
.kafka("string")
.build())
.tier("string")
.resourceGroupName("string")
.clusterVersion("string")
.extension(KafkaClusterExtensionArgs.builder()
.logAnalyticsWorkspaceId("string")
.primaryKey("string")
.build())
.encryptionInTransitEnabled(false)
.metastores(KafkaClusterMetastoresArgs.builder()
.ambari(KafkaClusterMetastoresAmbariArgs.builder()
.databaseName("string")
.password("string")
.server("string")
.username("string")
.build())
.hive(KafkaClusterMetastoresHiveArgs.builder()
.databaseName("string")
.password("string")
.server("string")
.username("string")
.build())
.oozie(KafkaClusterMetastoresOozieArgs.builder()
.databaseName("string")
.password("string")
.server("string")
.username("string")
.build())
.build())
.monitor(KafkaClusterMonitorArgs.builder()
.logAnalyticsWorkspaceId("string")
.primaryKey("string")
.build())
.name("string")
.network(KafkaClusterNetworkArgs.builder()
.connectionDirection("string")
.privateLinkEnabled(false)
.build())
.privateLinkConfiguration(KafkaClusterPrivateLinkConfigurationArgs.builder()
.groupId("string")
.ipConfiguration(KafkaClusterPrivateLinkConfigurationIpConfigurationArgs.builder()
.name("string")
.primary(false)
.privateIpAddress("string")
.privateIpAllocationMethod("string")
.subnetId("string")
.build())
.name("string")
.build())
.location("string")
.restProxy(KafkaClusterRestProxyArgs.builder()
.securityGroupId("string")
.securityGroupName("string")
.build())
.diskEncryptions(KafkaClusterDiskEncryptionArgs.builder()
.encryptionAlgorithm("string")
.encryptionAtHostEnabled(false)
.keyVaultKeyId("string")
.keyVaultManagedIdentityId("string")
.build())
.securityProfile(KafkaClusterSecurityProfileArgs.builder()
.aaddsResourceId("string")
.domainName("string")
.domainUserPassword("string")
.domainUsername("string")
.ldapsUrls("string")
.msiResourceId("string")
.clusterUsersGroupDns("string")
.build())
.storageAccountGen2(KafkaClusterStorageAccountGen2Args.builder()
.filesystemId("string")
.isDefault(false)
.managedIdentityResourceId("string")
.storageResourceId("string")
.build())
.storageAccounts(KafkaClusterStorageAccountArgs.builder()
.isDefault(false)
.storageAccountKey("string")
.storageContainerId("string")
.storageResourceId("string")
.build())
.tags(Map.of("string", "string"))
.computeIsolation(KafkaClusterComputeIsolationArgs.builder()
.computeIsolationEnabled(false)
.hostSku("string")
.build())
.tlsMinVersion("string")
.build());
kafka_cluster_resource = azure.hdinsight.KafkaCluster("kafkaClusterResource",
gateway=azure.hdinsight.KafkaClusterGatewayArgs(
password="string",
username="string",
),
component_version=azure.hdinsight.KafkaClusterComponentVersionArgs(
kafka="string",
),
tier="string",
resource_group_name="string",
cluster_version="string",
extension=azure.hdinsight.KafkaClusterExtensionArgs(
log_analytics_workspace_id="string",
primary_key="string",
),
encryption_in_transit_enabled=False,
metastores=azure.hdinsight.KafkaClusterMetastoresArgs(
ambari=azure.hdinsight.KafkaClusterMetastoresAmbariArgs(
database_name="string",
password="string",
server="string",
username="string",
),
hive=azure.hdinsight.KafkaClusterMetastoresHiveArgs(
database_name="string",
password="string",
server="string",
username="string",
),
oozie=azure.hdinsight.KafkaClusterMetastoresOozieArgs(
database_name="string",
password="string",
server="string",
username="string",
),
),
monitor=azure.hdinsight.KafkaClusterMonitorArgs(
log_analytics_workspace_id="string",
primary_key="string",
),
name="string",
network=azure.hdinsight.KafkaClusterNetworkArgs(
connection_direction="string",
private_link_enabled=False,
),
private_link_configuration=azure.hdinsight.KafkaClusterPrivateLinkConfigurationArgs(
group_id="string",
ip_configuration=azure.hdinsight.KafkaClusterPrivateLinkConfigurationIpConfigurationArgs(
name="string",
primary=False,
private_ip_address="string",
private_ip_allocation_method="string",
subnet_id="string",
),
name="string",
),
location="string",
rest_proxy=azure.hdinsight.KafkaClusterRestProxyArgs(
security_group_id="string",
security_group_name="string",
),
disk_encryptions=[azure.hdinsight.KafkaClusterDiskEncryptionArgs(
encryption_algorithm="string",
encryption_at_host_enabled=False,
key_vault_key_id="string",
key_vault_managed_identity_id="string",
)],
security_profile=azure.hdinsight.KafkaClusterSecurityProfileArgs(
aadds_resource_id="string",
domain_name="string",
domain_user_password="string",
domain_username="string",
ldaps_urls=["string"],
msi_resource_id="string",
cluster_users_group_dns=["string"],
),
storage_account_gen2=azure.hdinsight.KafkaClusterStorageAccountGen2Args(
filesystem_id="string",
is_default=False,
managed_identity_resource_id="string",
storage_resource_id="string",
),
storage_accounts=[azure.hdinsight.KafkaClusterStorageAccountArgs(
is_default=False,
storage_account_key="string",
storage_container_id="string",
storage_resource_id="string",
)],
tags={
"string": "string",
},
compute_isolation=azure.hdinsight.KafkaClusterComputeIsolationArgs(
compute_isolation_enabled=False,
host_sku="string",
),
tls_min_version="string")
const kafkaClusterResource = new azure.hdinsight.KafkaCluster("kafkaClusterResource", {
gateway: {
password: "string",
username: "string",
},
componentVersion: {
kafka: "string",
},
tier: "string",
resourceGroupName: "string",
clusterVersion: "string",
extension: {
logAnalyticsWorkspaceId: "string",
primaryKey: "string",
},
encryptionInTransitEnabled: false,
metastores: {
ambari: {
databaseName: "string",
password: "string",
server: "string",
username: "string",
},
hive: {
databaseName: "string",
password: "string",
server: "string",
username: "string",
},
oozie: {
databaseName: "string",
password: "string",
server: "string",
username: "string",
},
},
monitor: {
logAnalyticsWorkspaceId: "string",
primaryKey: "string",
},
name: "string",
network: {
connectionDirection: "string",
privateLinkEnabled: false,
},
privateLinkConfiguration: {
groupId: "string",
ipConfiguration: {
name: "string",
primary: false,
privateIpAddress: "string",
privateIpAllocationMethod: "string",
subnetId: "string",
},
name: "string",
},
location: "string",
restProxy: {
securityGroupId: "string",
securityGroupName: "string",
},
diskEncryptions: [{
encryptionAlgorithm: "string",
encryptionAtHostEnabled: false,
keyVaultKeyId: "string",
keyVaultManagedIdentityId: "string",
}],
securityProfile: {
aaddsResourceId: "string",
domainName: "string",
domainUserPassword: "string",
domainUsername: "string",
ldapsUrls: ["string"],
msiResourceId: "string",
clusterUsersGroupDns: ["string"],
},
storageAccountGen2: {
filesystemId: "string",
isDefault: false,
managedIdentityResourceId: "string",
storageResourceId: "string",
},
storageAccounts: [{
isDefault: false,
storageAccountKey: "string",
storageContainerId: "string",
storageResourceId: "string",
}],
tags: {
string: "string",
},
computeIsolation: {
computeIsolationEnabled: false,
hostSku: "string",
},
tlsMinVersion: "string",
});
type: azure:hdinsight:KafkaCluster
properties:
clusterVersion: string
componentVersion:
kafka: string
computeIsolation:
computeIsolationEnabled: false
hostSku: string
diskEncryptions:
- encryptionAlgorithm: string
encryptionAtHostEnabled: false
keyVaultKeyId: string
keyVaultManagedIdentityId: string
encryptionInTransitEnabled: false
extension:
logAnalyticsWorkspaceId: string
primaryKey: string
gateway:
password: string
username: string
location: string
metastores:
ambari:
databaseName: string
password: string
server: string
username: string
hive:
databaseName: string
password: string
server: string
username: string
oozie:
databaseName: string
password: string
server: string
username: string
monitor:
logAnalyticsWorkspaceId: string
primaryKey: string
name: string
network:
connectionDirection: string
privateLinkEnabled: false
privateLinkConfiguration:
groupId: string
ipConfiguration:
name: string
primary: false
privateIpAddress: string
privateIpAllocationMethod: string
subnetId: string
name: string
resourceGroupName: string
restProxy:
securityGroupId: string
securityGroupName: string
securityProfile:
aaddsResourceId: string
clusterUsersGroupDns:
- string
domainName: string
domainUserPassword: string
domainUsername: string
ldapsUrls:
- string
msiResourceId: string
storageAccountGen2:
filesystemId: string
isDefault: false
managedIdentityResourceId: string
storageResourceId: string
storageAccounts:
- isDefault: false
storageAccountKey: string
storageContainerId: string
storageResourceId: string
tags:
string: string
tier: string
tlsMinVersion: string
KafkaCluster Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The KafkaCluster resource accepts the following input properties:
- Cluster
Version string - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- Component
Version KafkaCluster Component Version - A
component_version
block as defined below. - Gateway
Kafka
Cluster Gateway - A
gateway
block as defined below. - Resource
Group stringName - Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- Roles
Kafka
Cluster Roles - A
roles
block as defined below. - Tier string
- Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are
Standard
orPremium
. Changing this forces a new resource to be created. - Compute
Isolation KafkaCluster Compute Isolation - A
compute_isolation
block as defined below. - Disk
Encryptions List<KafkaCluster Disk Encryption> One or more
disk_encryption
block as defined below.NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.
- Encryption
In boolTransit Enabled - Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- Extension
Kafka
Cluster Extension - An
extension
block as defined below. - Location string
- Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- Metastores
Kafka
Cluster Metastores - A
metastores
block as defined below. - Monitor
Kafka
Cluster Monitor - A
monitor
block as defined below. - Name string
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- Network
Kafka
Cluster Network - A
network
block as defined below. - Private
Link KafkaConfiguration Cluster Private Link Configuration - A
private_link_configuration
block as defined below. - Rest
Proxy KafkaCluster Rest Proxy - A
rest_proxy
block as defined below. - Security
Profile KafkaCluster Security Profile - A
security_profile
block as defined below. Changing this forces a new resource to be created. - Storage
Account KafkaGen2 Cluster Storage Account Gen2 - A
storage_account_gen2
block as defined below. - Storage
Accounts List<KafkaCluster Storage Account> - One or more
storage_account
block as defined below. - Dictionary<string, string>
- A map of Tags which should be assigned to this HDInsight Kafka Cluster.
- Tls
Min stringVersion - The minimal supported TLS version. Possible values are
1.0
,1.1
or1.2
. Changing this forces a new resource to be created.
- Cluster
Version string - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- Component
Version KafkaCluster Component Version Args - A
component_version
block as defined below. - Gateway
Kafka
Cluster Gateway Args - A
gateway
block as defined below. - Resource
Group stringName - Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- Roles
Kafka
Cluster Roles Args - A
roles
block as defined below. - Tier string
- Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are
Standard
orPremium
. Changing this forces a new resource to be created. - Compute
Isolation KafkaCluster Compute Isolation Args - A
compute_isolation
block as defined below. - Disk
Encryptions []KafkaCluster Disk Encryption Args One or more
disk_encryption
block as defined below.NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.
- Encryption
In boolTransit Enabled - Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- Extension
Kafka
Cluster Extension Args - An
extension
block as defined below. - Location string
- Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- Metastores
Kafka
Cluster Metastores Args - A
metastores
block as defined below. - Monitor
Kafka
Cluster Monitor Args - A
monitor
block as defined below. - Name string
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- Network
Kafka
Cluster Network Args - A
network
block as defined below. - Private
Link KafkaConfiguration Cluster Private Link Configuration Args - A
private_link_configuration
block as defined below. - Rest
Proxy KafkaCluster Rest Proxy Args - A
rest_proxy
block as defined below. - Security
Profile KafkaCluster Security Profile Args - A
security_profile
block as defined below. Changing this forces a new resource to be created. - Storage
Account KafkaGen2 Cluster Storage Account Gen2Args - A
storage_account_gen2
block as defined below. - Storage
Accounts []KafkaCluster Storage Account Args - One or more
storage_account
block as defined below. - map[string]string
- A map of Tags which should be assigned to this HDInsight Kafka Cluster.
- Tls
Min stringVersion - The minimal supported TLS version. Possible values are
1.0
,1.1
or1.2
. Changing this forces a new resource to be created.
- cluster
Version String - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component
Version KafkaCluster Component Version - A
component_version
block as defined below. - gateway
Kafka
Cluster Gateway - A
gateway
block as defined below. - resource
Group StringName - Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- roles
Kafka
Cluster Roles - A
roles
block as defined below. - tier String
- Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are
Standard
orPremium
. Changing this forces a new resource to be created. - compute
Isolation KafkaCluster Compute Isolation - A
compute_isolation
block as defined below. - disk
Encryptions List<KafkaCluster Disk Encryption> One or more
disk_encryption
block as defined below.NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.
- encryption
In BooleanTransit Enabled - Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- extension
Kafka
Cluster Extension - An
extension
block as defined below. - location String
- Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- metastores
Kafka
Cluster Metastores - A
metastores
block as defined below. - monitor
Kafka
Cluster Monitor - A
monitor
block as defined below. - name String
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- network
Kafka
Cluster Network - A
network
block as defined below. - private
Link KafkaConfiguration Cluster Private Link Configuration - A
private_link_configuration
block as defined below. - rest
Proxy KafkaCluster Rest Proxy - A
rest_proxy
block as defined below. - security
Profile KafkaCluster Security Profile - A
security_profile
block as defined below. Changing this forces a new resource to be created. - storage
Account KafkaGen2 Cluster Storage Account Gen2 - A
storage_account_gen2
block as defined below. - storage
Accounts List<KafkaCluster Storage Account> - One or more
storage_account
block as defined below. - Map<String,String>
- A map of Tags which should be assigned to this HDInsight Kafka Cluster.
- tls
Min StringVersion - The minimal supported TLS version. Possible values are
1.0
,1.1
or1.2
. Changing this forces a new resource to be created.
- cluster
Version string - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component
Version KafkaCluster Component Version - A
component_version
block as defined below. - gateway
Kafka
Cluster Gateway - A
gateway
block as defined below. - resource
Group stringName - Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- roles
Kafka
Cluster Roles - A
roles
block as defined below. - tier string
- Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are
Standard
orPremium
. Changing this forces a new resource to be created. - compute
Isolation KafkaCluster Compute Isolation - A
compute_isolation
block as defined below. - disk
Encryptions KafkaCluster Disk Encryption[] One or more
disk_encryption
block as defined below.NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.
- encryption
In booleanTransit Enabled - Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- extension
Kafka
Cluster Extension - An
extension
block as defined below. - location string
- Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- metastores
Kafka
Cluster Metastores - A
metastores
block as defined below. - monitor
Kafka
Cluster Monitor - A
monitor
block as defined below. - name string
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- network
Kafka
Cluster Network - A
network
block as defined below. - private
Link KafkaConfiguration Cluster Private Link Configuration - A
private_link_configuration
block as defined below. - rest
Proxy KafkaCluster Rest Proxy - A
rest_proxy
block as defined below. - security
Profile KafkaCluster Security Profile - A
security_profile
block as defined below. Changing this forces a new resource to be created. - storage
Account KafkaGen2 Cluster Storage Account Gen2 - A
storage_account_gen2
block as defined below. - storage
Accounts KafkaCluster Storage Account[] - One or more
storage_account
block as defined below. - {[key: string]: string}
- A map of Tags which should be assigned to this HDInsight Kafka Cluster.
- tls
Min stringVersion - The minimal supported TLS version. Possible values are
1.0
,1.1
or1.2
. Changing this forces a new resource to be created.
- cluster_
version str - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component_
version KafkaCluster Component Version Args - A
component_version
block as defined below. - gateway
Kafka
Cluster Gateway Args - A
gateway
block as defined below. - resource_
group_ strname - Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- roles
Kafka
Cluster Roles Args - A
roles
block as defined below. - tier str
- Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are
Standard
orPremium
. Changing this forces a new resource to be created. - compute_
isolation KafkaCluster Compute Isolation Args - A
compute_isolation
block as defined below. - disk_
encryptions Sequence[KafkaCluster Disk Encryption Args] One or more
disk_encryption
block as defined below.NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.
- encryption_
in_ booltransit_ enabled - Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- extension
Kafka
Cluster Extension Args - An
extension
block as defined below. - location str
- Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- metastores
Kafka
Cluster Metastores Args - A
metastores
block as defined below. - monitor
Kafka
Cluster Monitor Args - A
monitor
block as defined below. - name str
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- network
Kafka
Cluster Network Args - A
network
block as defined below. - private_
link_ Kafkaconfiguration Cluster Private Link Configuration Args - A
private_link_configuration
block as defined below. - rest_
proxy KafkaCluster Rest Proxy Args - A
rest_proxy
block as defined below. - security_
profile KafkaCluster Security Profile Args - A
security_profile
block as defined below. Changing this forces a new resource to be created. - storage_
account_ Kafkagen2 Cluster Storage Account Gen2Args - A
storage_account_gen2
block as defined below. - storage_
accounts Sequence[KafkaCluster Storage Account Args] - One or more
storage_account
block as defined below. - Mapping[str, str]
- A map of Tags which should be assigned to this HDInsight Kafka Cluster.
- tls_
min_ strversion - The minimal supported TLS version. Possible values are
1.0
,1.1
or1.2
. Changing this forces a new resource to be created.
- cluster
Version String - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component
Version Property Map - A
component_version
block as defined below. - gateway Property Map
- A
gateway
block as defined below. - resource
Group StringName - Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- roles Property Map
- A
roles
block as defined below. - tier String
- Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are
Standard
orPremium
. Changing this forces a new resource to be created. - compute
Isolation Property Map - A
compute_isolation
block as defined below. - disk
Encryptions List<Property Map> One or more
disk_encryption
block as defined below.NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.
- encryption
In BooleanTransit Enabled - Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- extension Property Map
- An
extension
block as defined below. - location String
- Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- metastores Property Map
- A
metastores
block as defined below. - monitor Property Map
- A
monitor
block as defined below. - name String
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- network Property Map
- A
network
block as defined below. - private
Link Property MapConfiguration - A
private_link_configuration
block as defined below. - rest
Proxy Property Map - A
rest_proxy
block as defined below. - security
Profile Property Map - A
security_profile
block as defined below. Changing this forces a new resource to be created. - storage
Account Property MapGen2 - A
storage_account_gen2
block as defined below. - storage
Accounts List<Property Map> - One or more
storage_account
block as defined below. - Map<String>
- A map of Tags which should be assigned to this HDInsight Kafka Cluster.
- tls
Min StringVersion - The minimal supported TLS version. Possible values are
1.0
,1.1
or1.2
. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the KafkaCluster resource produces the following output properties:
- Https
Endpoint string - The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kafka
Rest stringProxy Endpoint - The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
- Ssh
Endpoint string - The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
- Https
Endpoint string - The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
- Id string
- The provider-assigned unique ID for this managed resource.
- Kafka
Rest stringProxy Endpoint - The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
- Ssh
Endpoint string - The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
- https
Endpoint String - The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- kafka
Rest StringProxy Endpoint - The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
- ssh
Endpoint String - The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
- https
Endpoint string - The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
- id string
- The provider-assigned unique ID for this managed resource.
- kafka
Rest stringProxy Endpoint - The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
- ssh
Endpoint string - The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
- https_
endpoint str - The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
- id str
- The provider-assigned unique ID for this managed resource.
- kafka_
rest_ strproxy_ endpoint - The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
- ssh_
endpoint str - The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
- https
Endpoint String - The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
- id String
- The provider-assigned unique ID for this managed resource.
- kafka
Rest StringProxy Endpoint - The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
- ssh
Endpoint String - The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
Look up Existing KafkaCluster Resource
Get an existing KafkaCluster 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?: KafkaClusterState, opts?: CustomResourceOptions): KafkaCluster
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cluster_version: Optional[str] = None,
component_version: Optional[KafkaClusterComponentVersionArgs] = None,
compute_isolation: Optional[KafkaClusterComputeIsolationArgs] = None,
disk_encryptions: Optional[Sequence[KafkaClusterDiskEncryptionArgs]] = None,
encryption_in_transit_enabled: Optional[bool] = None,
extension: Optional[KafkaClusterExtensionArgs] = None,
gateway: Optional[KafkaClusterGatewayArgs] = None,
https_endpoint: Optional[str] = None,
kafka_rest_proxy_endpoint: Optional[str] = None,
location: Optional[str] = None,
metastores: Optional[KafkaClusterMetastoresArgs] = None,
monitor: Optional[KafkaClusterMonitorArgs] = None,
name: Optional[str] = None,
network: Optional[KafkaClusterNetworkArgs] = None,
private_link_configuration: Optional[KafkaClusterPrivateLinkConfigurationArgs] = None,
resource_group_name: Optional[str] = None,
rest_proxy: Optional[KafkaClusterRestProxyArgs] = None,
roles: Optional[KafkaClusterRolesArgs] = None,
security_profile: Optional[KafkaClusterSecurityProfileArgs] = None,
ssh_endpoint: Optional[str] = None,
storage_account_gen2: Optional[KafkaClusterStorageAccountGen2Args] = None,
storage_accounts: Optional[Sequence[KafkaClusterStorageAccountArgs]] = None,
tags: Optional[Mapping[str, str]] = None,
tier: Optional[str] = None,
tls_min_version: Optional[str] = None) -> KafkaCluster
func GetKafkaCluster(ctx *Context, name string, id IDInput, state *KafkaClusterState, opts ...ResourceOption) (*KafkaCluster, error)
public static KafkaCluster Get(string name, Input<string> id, KafkaClusterState? state, CustomResourceOptions? opts = null)
public static KafkaCluster get(String name, Output<String> id, KafkaClusterState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Cluster
Version string - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- Component
Version KafkaCluster Component Version - A
component_version
block as defined below. - Compute
Isolation KafkaCluster Compute Isolation - A
compute_isolation
block as defined below. - Disk
Encryptions List<KafkaCluster Disk Encryption> One or more
disk_encryption
block as defined below.NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.
- Encryption
In boolTransit Enabled - Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- Extension
Kafka
Cluster Extension - An
extension
block as defined below. - Gateway
Kafka
Cluster Gateway - A
gateway
block as defined below. - Https
Endpoint string - The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
- Kafka
Rest stringProxy Endpoint - The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
- Location string
- Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- Metastores
Kafka
Cluster Metastores - A
metastores
block as defined below. - Monitor
Kafka
Cluster Monitor - A
monitor
block as defined below. - Name string
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- Network
Kafka
Cluster Network - A
network
block as defined below. - Private
Link KafkaConfiguration Cluster Private Link Configuration - A
private_link_configuration
block as defined below. - Resource
Group stringName - Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- Rest
Proxy KafkaCluster Rest Proxy - A
rest_proxy
block as defined below. - Roles
Kafka
Cluster Roles - A
roles
block as defined below. - Security
Profile KafkaCluster Security Profile - A
security_profile
block as defined below. Changing this forces a new resource to be created. - Ssh
Endpoint string - The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
- Storage
Account KafkaGen2 Cluster Storage Account Gen2 - A
storage_account_gen2
block as defined below. - Storage
Accounts List<KafkaCluster Storage Account> - One or more
storage_account
block as defined below. - Dictionary<string, string>
- A map of Tags which should be assigned to this HDInsight Kafka Cluster.
- Tier string
- Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are
Standard
orPremium
. Changing this forces a new resource to be created. - Tls
Min stringVersion - The minimal supported TLS version. Possible values are
1.0
,1.1
or1.2
. Changing this forces a new resource to be created.
- Cluster
Version string - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- Component
Version KafkaCluster Component Version Args - A
component_version
block as defined below. - Compute
Isolation KafkaCluster Compute Isolation Args - A
compute_isolation
block as defined below. - Disk
Encryptions []KafkaCluster Disk Encryption Args One or more
disk_encryption
block as defined below.NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.
- Encryption
In boolTransit Enabled - Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- Extension
Kafka
Cluster Extension Args - An
extension
block as defined below. - Gateway
Kafka
Cluster Gateway Args - A
gateway
block as defined below. - Https
Endpoint string - The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
- Kafka
Rest stringProxy Endpoint - The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
- Location string
- Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- Metastores
Kafka
Cluster Metastores Args - A
metastores
block as defined below. - Monitor
Kafka
Cluster Monitor Args - A
monitor
block as defined below. - Name string
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- Network
Kafka
Cluster Network Args - A
network
block as defined below. - Private
Link KafkaConfiguration Cluster Private Link Configuration Args - A
private_link_configuration
block as defined below. - Resource
Group stringName - Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- Rest
Proxy KafkaCluster Rest Proxy Args - A
rest_proxy
block as defined below. - Roles
Kafka
Cluster Roles Args - A
roles
block as defined below. - Security
Profile KafkaCluster Security Profile Args - A
security_profile
block as defined below. Changing this forces a new resource to be created. - Ssh
Endpoint string - The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
- Storage
Account KafkaGen2 Cluster Storage Account Gen2Args - A
storage_account_gen2
block as defined below. - Storage
Accounts []KafkaCluster Storage Account Args - One or more
storage_account
block as defined below. - map[string]string
- A map of Tags which should be assigned to this HDInsight Kafka Cluster.
- Tier string
- Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are
Standard
orPremium
. Changing this forces a new resource to be created. - Tls
Min stringVersion - The minimal supported TLS version. Possible values are
1.0
,1.1
or1.2
. Changing this forces a new resource to be created.
- cluster
Version String - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component
Version KafkaCluster Component Version - A
component_version
block as defined below. - compute
Isolation KafkaCluster Compute Isolation - A
compute_isolation
block as defined below. - disk
Encryptions List<KafkaCluster Disk Encryption> One or more
disk_encryption
block as defined below.NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.
- encryption
In BooleanTransit Enabled - Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- extension
Kafka
Cluster Extension - An
extension
block as defined below. - gateway
Kafka
Cluster Gateway - A
gateway
block as defined below. - https
Endpoint String - The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
- kafka
Rest StringProxy Endpoint - The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
- location String
- Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- metastores
Kafka
Cluster Metastores - A
metastores
block as defined below. - monitor
Kafka
Cluster Monitor - A
monitor
block as defined below. - name String
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- network
Kafka
Cluster Network - A
network
block as defined below. - private
Link KafkaConfiguration Cluster Private Link Configuration - A
private_link_configuration
block as defined below. - resource
Group StringName - Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- rest
Proxy KafkaCluster Rest Proxy - A
rest_proxy
block as defined below. - roles
Kafka
Cluster Roles - A
roles
block as defined below. - security
Profile KafkaCluster Security Profile - A
security_profile
block as defined below. Changing this forces a new resource to be created. - ssh
Endpoint String - The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
- storage
Account KafkaGen2 Cluster Storage Account Gen2 - A
storage_account_gen2
block as defined below. - storage
Accounts List<KafkaCluster Storage Account> - One or more
storage_account
block as defined below. - Map<String,String>
- A map of Tags which should be assigned to this HDInsight Kafka Cluster.
- tier String
- Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are
Standard
orPremium
. Changing this forces a new resource to be created. - tls
Min StringVersion - The minimal supported TLS version. Possible values are
1.0
,1.1
or1.2
. Changing this forces a new resource to be created.
- cluster
Version string - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component
Version KafkaCluster Component Version - A
component_version
block as defined below. - compute
Isolation KafkaCluster Compute Isolation - A
compute_isolation
block as defined below. - disk
Encryptions KafkaCluster Disk Encryption[] One or more
disk_encryption
block as defined below.NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.
- encryption
In booleanTransit Enabled - Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- extension
Kafka
Cluster Extension - An
extension
block as defined below. - gateway
Kafka
Cluster Gateway - A
gateway
block as defined below. - https
Endpoint string - The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
- kafka
Rest stringProxy Endpoint - The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
- location string
- Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- metastores
Kafka
Cluster Metastores - A
metastores
block as defined below. - monitor
Kafka
Cluster Monitor - A
monitor
block as defined below. - name string
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- network
Kafka
Cluster Network - A
network
block as defined below. - private
Link KafkaConfiguration Cluster Private Link Configuration - A
private_link_configuration
block as defined below. - resource
Group stringName - Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- rest
Proxy KafkaCluster Rest Proxy - A
rest_proxy
block as defined below. - roles
Kafka
Cluster Roles - A
roles
block as defined below. - security
Profile KafkaCluster Security Profile - A
security_profile
block as defined below. Changing this forces a new resource to be created. - ssh
Endpoint string - The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
- storage
Account KafkaGen2 Cluster Storage Account Gen2 - A
storage_account_gen2
block as defined below. - storage
Accounts KafkaCluster Storage Account[] - One or more
storage_account
block as defined below. - {[key: string]: string}
- A map of Tags which should be assigned to this HDInsight Kafka Cluster.
- tier string
- Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are
Standard
orPremium
. Changing this forces a new resource to be created. - tls
Min stringVersion - The minimal supported TLS version. Possible values are
1.0
,1.1
or1.2
. Changing this forces a new resource to be created.
- cluster_
version str - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component_
version KafkaCluster Component Version Args - A
component_version
block as defined below. - compute_
isolation KafkaCluster Compute Isolation Args - A
compute_isolation
block as defined below. - disk_
encryptions Sequence[KafkaCluster Disk Encryption Args] One or more
disk_encryption
block as defined below.NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.
- encryption_
in_ booltransit_ enabled - Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- extension
Kafka
Cluster Extension Args - An
extension
block as defined below. - gateway
Kafka
Cluster Gateway Args - A
gateway
block as defined below. - https_
endpoint str - The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
- kafka_
rest_ strproxy_ endpoint - The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
- location str
- Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- metastores
Kafka
Cluster Metastores Args - A
metastores
block as defined below. - monitor
Kafka
Cluster Monitor Args - A
monitor
block as defined below. - name str
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- network
Kafka
Cluster Network Args - A
network
block as defined below. - private_
link_ Kafkaconfiguration Cluster Private Link Configuration Args - A
private_link_configuration
block as defined below. - resource_
group_ strname - Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- rest_
proxy KafkaCluster Rest Proxy Args - A
rest_proxy
block as defined below. - roles
Kafka
Cluster Roles Args - A
roles
block as defined below. - security_
profile KafkaCluster Security Profile Args - A
security_profile
block as defined below. Changing this forces a new resource to be created. - ssh_
endpoint str - The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
- storage_
account_ Kafkagen2 Cluster Storage Account Gen2Args - A
storage_account_gen2
block as defined below. - storage_
accounts Sequence[KafkaCluster Storage Account Args] - One or more
storage_account
block as defined below. - Mapping[str, str]
- A map of Tags which should be assigned to this HDInsight Kafka Cluster.
- tier str
- Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are
Standard
orPremium
. Changing this forces a new resource to be created. - tls_
min_ strversion - The minimal supported TLS version. Possible values are
1.0
,1.1
or1.2
. Changing this forces a new resource to be created.
- cluster
Version String - Specifies the Version of HDInsights which should be used for this Cluster. Changing this forces a new resource to be created.
- component
Version Property Map - A
component_version
block as defined below. - compute
Isolation Property Map - A
compute_isolation
block as defined below. - disk
Encryptions List<Property Map> One or more
disk_encryption
block as defined below.NOTE: Starting on June 30, 2020, Azure HDInsight will enforce TLS 1.2 or later versions for all HTTPS connections. For more information, see Azure HDInsight TLS 1.2 Enforcement.
- encryption
In BooleanTransit Enabled - Whether encryption in transit is enabled for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- extension Property Map
- An
extension
block as defined below. - gateway Property Map
- A
gateway
block as defined below. - https
Endpoint String - The HTTPS Connectivity Endpoint for this HDInsight Kafka Cluster.
- kafka
Rest StringProxy Endpoint - The Kafka Rest Proxy Endpoint for this HDInsight Kafka Cluster.
- location String
- Specifies the Azure Region which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- metastores Property Map
- A
metastores
block as defined below. - monitor Property Map
- A
monitor
block as defined below. - name String
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- network Property Map
- A
network
block as defined below. - private
Link Property MapConfiguration - A
private_link_configuration
block as defined below. - resource
Group StringName - Specifies the name of the Resource Group in which this HDInsight Kafka Cluster should exist. Changing this forces a new resource to be created.
- rest
Proxy Property Map - A
rest_proxy
block as defined below. - roles Property Map
- A
roles
block as defined below. - security
Profile Property Map - A
security_profile
block as defined below. Changing this forces a new resource to be created. - ssh
Endpoint String - The SSH Connectivity Endpoint for this HDInsight Kafka Cluster.
- storage
Account Property MapGen2 - A
storage_account_gen2
block as defined below. - storage
Accounts List<Property Map> - One or more
storage_account
block as defined below. - Map<String>
- A map of Tags which should be assigned to this HDInsight Kafka Cluster.
- tier String
- Specifies the Tier which should be used for this HDInsight Kafka Cluster. Possible values are
Standard
orPremium
. Changing this forces a new resource to be created. - tls
Min StringVersion - The minimal supported TLS version. Possible values are
1.0
,1.1
or1.2
. Changing this forces a new resource to be created.
Supporting Types
KafkaClusterComponentVersion, KafkaClusterComponentVersionArgs
- Kafka string
- The version of Kafka which should be used for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- Kafka string
- The version of Kafka which should be used for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- kafka String
- The version of Kafka which should be used for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- kafka string
- The version of Kafka which should be used for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- kafka str
- The version of Kafka which should be used for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- kafka String
- The version of Kafka which should be used for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
KafkaClusterComputeIsolation, KafkaClusterComputeIsolationArgs
- Compute
Isolation boolEnabled - This field indicates whether enable compute isolation or not. Possible values are
true
orfalse
. - Host
Sku string - The name of the host SKU.
- Compute
Isolation boolEnabled - This field indicates whether enable compute isolation or not. Possible values are
true
orfalse
. - Host
Sku string - The name of the host SKU.
- compute
Isolation BooleanEnabled - This field indicates whether enable compute isolation or not. Possible values are
true
orfalse
. - host
Sku String - The name of the host SKU.
- compute
Isolation booleanEnabled - This field indicates whether enable compute isolation or not. Possible values are
true
orfalse
. - host
Sku string - The name of the host SKU.
- compute_
isolation_ boolenabled - This field indicates whether enable compute isolation or not. Possible values are
true
orfalse
. - host_
sku str - The name of the host SKU.
- compute
Isolation BooleanEnabled - This field indicates whether enable compute isolation or not. Possible values are
true
orfalse
. - host
Sku String - The name of the host SKU.
KafkaClusterDiskEncryption, KafkaClusterDiskEncryptionArgs
- Encryption
Algorithm string - This is an algorithm identifier for encryption. Possible values are
RSA1_5
,RSA-OAEP
,RSA-OAEP-256
. - Encryption
At boolHost Enabled - This is indicator to show whether resource disk encryption is enabled.
- Key
Vault stringKey Id - The ID of the key vault key.
- Key
Vault stringManaged Identity Id - This is the resource ID of Managed Identity used to access the key vault.
- Encryption
Algorithm string - This is an algorithm identifier for encryption. Possible values are
RSA1_5
,RSA-OAEP
,RSA-OAEP-256
. - Encryption
At boolHost Enabled - This is indicator to show whether resource disk encryption is enabled.
- Key
Vault stringKey Id - The ID of the key vault key.
- Key
Vault stringManaged Identity Id - This is the resource ID of Managed Identity used to access the key vault.
- encryption
Algorithm String - This is an algorithm identifier for encryption. Possible values are
RSA1_5
,RSA-OAEP
,RSA-OAEP-256
. - encryption
At BooleanHost Enabled - This is indicator to show whether resource disk encryption is enabled.
- key
Vault StringKey Id - The ID of the key vault key.
- key
Vault StringManaged Identity Id - This is the resource ID of Managed Identity used to access the key vault.
- encryption
Algorithm string - This is an algorithm identifier for encryption. Possible values are
RSA1_5
,RSA-OAEP
,RSA-OAEP-256
. - encryption
At booleanHost Enabled - This is indicator to show whether resource disk encryption is enabled.
- key
Vault stringKey Id - The ID of the key vault key.
- key
Vault stringManaged Identity Id - This is the resource ID of Managed Identity used to access the key vault.
- encryption_
algorithm str - This is an algorithm identifier for encryption. Possible values are
RSA1_5
,RSA-OAEP
,RSA-OAEP-256
. - encryption_
at_ boolhost_ enabled - This is indicator to show whether resource disk encryption is enabled.
- key_
vault_ strkey_ id - The ID of the key vault key.
- key_
vault_ strmanaged_ identity_ id - This is the resource ID of Managed Identity used to access the key vault.
- encryption
Algorithm String - This is an algorithm identifier for encryption. Possible values are
RSA1_5
,RSA-OAEP
,RSA-OAEP-256
. - encryption
At BooleanHost Enabled - This is indicator to show whether resource disk encryption is enabled.
- key
Vault StringKey Id - The ID of the key vault key.
- key
Vault StringManaged Identity Id - This is the resource ID of Managed Identity used to access the key vault.
KafkaClusterExtension, KafkaClusterExtensionArgs
- Log
Analytics stringWorkspace Id - The workspace ID of the log analytics extension.
- Primary
Key string - The workspace key of the log analytics extension.
- Log
Analytics stringWorkspace Id - The workspace ID of the log analytics extension.
- Primary
Key string - The workspace key of the log analytics extension.
- log
Analytics StringWorkspace Id - The workspace ID of the log analytics extension.
- primary
Key String - The workspace key of the log analytics extension.
- log
Analytics stringWorkspace Id - The workspace ID of the log analytics extension.
- primary
Key string - The workspace key of the log analytics extension.
- log_
analytics_ strworkspace_ id - The workspace ID of the log analytics extension.
- primary_
key str - The workspace key of the log analytics extension.
- log
Analytics StringWorkspace Id - The workspace ID of the log analytics extension.
- primary
Key String - The workspace key of the log analytics extension.
KafkaClusterGateway, KafkaClusterGatewayArgs
KafkaClusterMetastores, KafkaClusterMetastoresArgs
- Ambari
Kafka
Cluster Metastores Ambari - An
ambari
block as defined below. - Hive
Kafka
Cluster Metastores Hive - A
hive
block as defined below. - Oozie
Kafka
Cluster Metastores Oozie - An
oozie
block as defined below.
- Ambari
Kafka
Cluster Metastores Ambari - An
ambari
block as defined below. - Hive
Kafka
Cluster Metastores Hive - A
hive
block as defined below. - Oozie
Kafka
Cluster Metastores Oozie - An
oozie
block as defined below.
- ambari
Kafka
Cluster Metastores Ambari - An
ambari
block as defined below. - hive
Kafka
Cluster Metastores Hive - A
hive
block as defined below. - oozie
Kafka
Cluster Metastores Oozie - An
oozie
block as defined below.
- ambari
Kafka
Cluster Metastores Ambari - An
ambari
block as defined below. - hive
Kafka
Cluster Metastores Hive - A
hive
block as defined below. - oozie
Kafka
Cluster Metastores Oozie - An
oozie
block as defined below.
- ambari
Kafka
Cluster Metastores Ambari - An
ambari
block as defined below. - hive
Kafka
Cluster Metastores Hive - A
hive
block as defined below. - oozie
Kafka
Cluster Metastores Oozie - An
oozie
block as defined below.
- ambari Property Map
- An
ambari
block as defined below. - hive Property Map
- A
hive
block as defined below. - oozie Property Map
- An
oozie
block as defined below.
KafkaClusterMetastoresAmbari, KafkaClusterMetastoresAmbariArgs
- Database
Name string - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- Password string
- The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- Server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
- Username string
- The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- Database
Name string - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- Password string
- The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- Server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
- Username string
- The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name String - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password String
- The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server String
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
- username String
- The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name string - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password string
- The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
- username string
- The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database_
name str - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password str
- The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server str
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
- username str
- The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name String - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password String
- The external Ambari metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server String
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Ambari metastore. Changing this forces a new resource to be created.
- username String
- The external Ambari metastore's existing SQL server admin username. Changing this forces a new resource to be created.
KafkaClusterMetastoresHive, KafkaClusterMetastoresHiveArgs
- Database
Name string - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- Password string
- The external Hive metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- Server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Hive metastore. Changing this forces a new resource to be created.
- Username string
- The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- Database
Name string - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- Password string
- The external Hive metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- Server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Hive metastore. Changing this forces a new resource to be created.
- Username string
- The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name String - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password String
- The external Hive metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server String
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Hive metastore. Changing this forces a new resource to be created.
- username String
- The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name string - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password string
- The external Hive metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Hive metastore. Changing this forces a new resource to be created.
- username string
- The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database_
name str - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password str
- The external Hive metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server str
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Hive metastore. Changing this forces a new resource to be created.
- username str
- The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name String - The external Hive metastore's existing SQL database. Changing this forces a new resource to be created.
- password String
- The external Hive metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server String
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Hive metastore. Changing this forces a new resource to be created.
- username String
- The external Hive metastore's existing SQL server admin username. Changing this forces a new resource to be created.
KafkaClusterMetastoresOozie, KafkaClusterMetastoresOozieArgs
- Database
Name string - The external Oozie metastore's existing SQL database. Changing this forces a new resource to be created.
- Password string
- The external Oozie metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- Server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Oozie metastore. Changing this forces a new resource to be created.
- Username string
- The external Oozie metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- Database
Name string - The external Oozie metastore's existing SQL database. Changing this forces a new resource to be created.
- Password string
- The external Oozie metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- Server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Oozie metastore. Changing this forces a new resource to be created.
- Username string
- The external Oozie metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name String - The external Oozie metastore's existing SQL database. Changing this forces a new resource to be created.
- password String
- The external Oozie metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server String
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Oozie metastore. Changing this forces a new resource to be created.
- username String
- The external Oozie metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name string - The external Oozie metastore's existing SQL database. Changing this forces a new resource to be created.
- password string
- The external Oozie metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server string
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Oozie metastore. Changing this forces a new resource to be created.
- username string
- The external Oozie metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database_
name str - The external Oozie metastore's existing SQL database. Changing this forces a new resource to be created.
- password str
- The external Oozie metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server str
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Oozie metastore. Changing this forces a new resource to be created.
- username str
- The external Oozie metastore's existing SQL server admin username. Changing this forces a new resource to be created.
- database
Name String - The external Oozie metastore's existing SQL database. Changing this forces a new resource to be created.
- password String
- The external Oozie metastore's existing SQL server admin password. Changing this forces a new resource to be created.
- server String
- The fully-qualified domain name (FQDN) of the SQL server to use for the external Oozie metastore. Changing this forces a new resource to be created.
- username String
- The external Oozie metastore's existing SQL server admin username. Changing this forces a new resource to be created.
KafkaClusterMonitor, KafkaClusterMonitorArgs
- Log
Analytics stringWorkspace Id - The Operations Management Suite (OMS) workspace ID.
- Primary
Key string - The Operations Management Suite (OMS) workspace key.
- Log
Analytics stringWorkspace Id - The Operations Management Suite (OMS) workspace ID.
- Primary
Key string - The Operations Management Suite (OMS) workspace key.
- log
Analytics StringWorkspace Id - The Operations Management Suite (OMS) workspace ID.
- primary
Key String - The Operations Management Suite (OMS) workspace key.
- log
Analytics stringWorkspace Id - The Operations Management Suite (OMS) workspace ID.
- primary
Key string - The Operations Management Suite (OMS) workspace key.
- log_
analytics_ strworkspace_ id - The Operations Management Suite (OMS) workspace ID.
- primary_
key str - The Operations Management Suite (OMS) workspace key.
- log
Analytics StringWorkspace Id - The Operations Management Suite (OMS) workspace ID.
- primary
Key String - The Operations Management Suite (OMS) workspace key.
KafkaClusterNetwork, KafkaClusterNetworkArgs
- Connection
Direction string The direction of the resource provider connection. Possible values include
Inbound
orOutbound
. Defaults toInbound
. Changing this forces a new resource to be created.NOTE: To enabled the private link the
connection_direction
must be set toOutbound
.- Private
Link boolEnabled - Is the private link enabled? Possible values include
true
orfalse
. Defaults tofalse
. Changing this forces a new resource to be created.
- Connection
Direction string The direction of the resource provider connection. Possible values include
Inbound
orOutbound
. Defaults toInbound
. Changing this forces a new resource to be created.NOTE: To enabled the private link the
connection_direction
must be set toOutbound
.- Private
Link boolEnabled - Is the private link enabled? Possible values include
true
orfalse
. Defaults tofalse
. Changing this forces a new resource to be created.
- connection
Direction String The direction of the resource provider connection. Possible values include
Inbound
orOutbound
. Defaults toInbound
. Changing this forces a new resource to be created.NOTE: To enabled the private link the
connection_direction
must be set toOutbound
.- private
Link BooleanEnabled - Is the private link enabled? Possible values include
true
orfalse
. Defaults tofalse
. Changing this forces a new resource to be created.
- connection
Direction string The direction of the resource provider connection. Possible values include
Inbound
orOutbound
. Defaults toInbound
. Changing this forces a new resource to be created.NOTE: To enabled the private link the
connection_direction
must be set toOutbound
.- private
Link booleanEnabled - Is the private link enabled? Possible values include
true
orfalse
. Defaults tofalse
. Changing this forces a new resource to be created.
- connection_
direction str The direction of the resource provider connection. Possible values include
Inbound
orOutbound
. Defaults toInbound
. Changing this forces a new resource to be created.NOTE: To enabled the private link the
connection_direction
must be set toOutbound
.- private_
link_ boolenabled - Is the private link enabled? Possible values include
true
orfalse
. Defaults tofalse
. Changing this forces a new resource to be created.
- connection
Direction String The direction of the resource provider connection. Possible values include
Inbound
orOutbound
. Defaults toInbound
. Changing this forces a new resource to be created.NOTE: To enabled the private link the
connection_direction
must be set toOutbound
.- private
Link BooleanEnabled - Is the private link enabled? Possible values include
true
orfalse
. Defaults tofalse
. Changing this forces a new resource to be created.
KafkaClusterPrivateLinkConfiguration, KafkaClusterPrivateLinkConfigurationArgs
- Group
Id string - The ID of the private link service group.
- Ip
Configuration KafkaCluster Private Link Configuration Ip Configuration - Name string
- The name of the private link configuration.
- Group
Id string - The ID of the private link service group.
- Ip
Configuration KafkaCluster Private Link Configuration Ip Configuration - Name string
- The name of the private link configuration.
- group
Id String - The ID of the private link service group.
- ip
Configuration KafkaCluster Private Link Configuration Ip Configuration - name String
- The name of the private link configuration.
- group
Id string - The ID of the private link service group.
- ip
Configuration KafkaCluster Private Link Configuration Ip Configuration - name string
- The name of the private link configuration.
- group_
id str - The ID of the private link service group.
- ip_
configuration KafkaCluster Private Link Configuration Ip Configuration - name str
- The name of the private link configuration.
- group
Id String - The ID of the private link service group.
- ip
Configuration Property Map - name String
- The name of the private link configuration.
KafkaClusterPrivateLinkConfigurationIpConfiguration, KafkaClusterPrivateLinkConfigurationIpConfigurationArgs
- Name string
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- Primary bool
- Private
Ip stringAddress - Private
Ip stringAllocation Method - Subnet
Id string
- Name string
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- Primary bool
- Private
Ip stringAddress - Private
Ip stringAllocation Method - Subnet
Id string
- name String
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- primary Boolean
- private
Ip StringAddress - private
Ip StringAllocation Method - subnet
Id String
- name string
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- primary boolean
- private
Ip stringAddress - private
Ip stringAllocation Method - subnet
Id string
- name str
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- primary bool
- private_
ip_ straddress - private_
ip_ strallocation_ method - subnet_
id str
- name String
- Specifies the name for this HDInsight Kafka Cluster. Changing this forces a new resource to be created.
- primary Boolean
- private
Ip StringAddress - private
Ip StringAllocation Method - subnet
Id String
KafkaClusterRestProxy, KafkaClusterRestProxyArgs
- Security
Group stringId - The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
- Security
Group stringName The Azure Active Directory Security Group name. Changing this forces a new resource to be created.
Note: The
security_group_name
property will be Required in version 3.0 of the AzureRM Provider.
- Security
Group stringId - The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
- Security
Group stringName The Azure Active Directory Security Group name. Changing this forces a new resource to be created.
Note: The
security_group_name
property will be Required in version 3.0 of the AzureRM Provider.
- security
Group StringId - The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
- security
Group StringName The Azure Active Directory Security Group name. Changing this forces a new resource to be created.
Note: The
security_group_name
property will be Required in version 3.0 of the AzureRM Provider.
- security
Group stringId - The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
- security
Group stringName The Azure Active Directory Security Group name. Changing this forces a new resource to be created.
Note: The
security_group_name
property will be Required in version 3.0 of the AzureRM Provider.
- security_
group_ strid - The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
- security_
group_ strname The Azure Active Directory Security Group name. Changing this forces a new resource to be created.
Note: The
security_group_name
property will be Required in version 3.0 of the AzureRM Provider.
- security
Group StringId - The Azure Active Directory Security Group ID. Changing this forces a new resource to be created.
- security
Group StringName The Azure Active Directory Security Group name. Changing this forces a new resource to be created.
Note: The
security_group_name
property will be Required in version 3.0 of the AzureRM Provider.
KafkaClusterRoles, KafkaClusterRolesArgs
- Head
Node KafkaCluster Roles Head Node - A
head_node
block as defined above. - Worker
Node KafkaCluster Roles Worker Node - A
worker_node
block as defined below. - Zookeeper
Node KafkaCluster Roles Zookeeper Node - A
zookeeper_node
block as defined below. - Kafka
Management KafkaNode Cluster Roles Kafka Management Node A
kafka_management_node
block as defined below.Note: This property has been deprecated and will be removed in version 4.0.
- Head
Node KafkaCluster Roles Head Node - A
head_node
block as defined above. - Worker
Node KafkaCluster Roles Worker Node - A
worker_node
block as defined below. - Zookeeper
Node KafkaCluster Roles Zookeeper Node - A
zookeeper_node
block as defined below. - Kafka
Management KafkaNode Cluster Roles Kafka Management Node A
kafka_management_node
block as defined below.Note: This property has been deprecated and will be removed in version 4.0.
- head
Node KafkaCluster Roles Head Node - A
head_node
block as defined above. - worker
Node KafkaCluster Roles Worker Node - A
worker_node
block as defined below. - zookeeper
Node KafkaCluster Roles Zookeeper Node - A
zookeeper_node
block as defined below. - kafka
Management KafkaNode Cluster Roles Kafka Management Node A
kafka_management_node
block as defined below.Note: This property has been deprecated and will be removed in version 4.0.
- head
Node KafkaCluster Roles Head Node - A
head_node
block as defined above. - worker
Node KafkaCluster Roles Worker Node - A
worker_node
block as defined below. - zookeeper
Node KafkaCluster Roles Zookeeper Node - A
zookeeper_node
block as defined below. - kafka
Management KafkaNode Cluster Roles Kafka Management Node A
kafka_management_node
block as defined below.Note: This property has been deprecated and will be removed in version 4.0.
- head_
node KafkaCluster Roles Head Node - A
head_node
block as defined above. - worker_
node KafkaCluster Roles Worker Node - A
worker_node
block as defined below. - zookeeper_
node KafkaCluster Roles Zookeeper Node - A
zookeeper_node
block as defined below. - kafka_
management_ Kafkanode Cluster Roles Kafka Management Node A
kafka_management_node
block as defined below.Note: This property has been deprecated and will be removed in version 4.0.
- head
Node Property Map - A
head_node
block as defined above. - worker
Node Property Map - A
worker_node
block as defined below. - zookeeper
Node Property Map - A
zookeeper_node
block as defined below. - kafka
Management Property MapNode A
kafka_management_node
block as defined below.Note: This property has been deprecated and will be removed in version 4.0.
KafkaClusterRolesHeadNode, KafkaClusterRolesHeadNodeArgs
- Username string
- The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Head Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - Password string
The Password associated with the local administrator for the Head Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- Script
Actions List<KafkaCluster Roles Head Node Script Action> - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - Ssh
Keys List<string> A list of SSH Keys which should be used for the local administrator on the Head Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- Username string
- The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Head Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - Password string
The Password associated with the local administrator for the Head Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- Script
Actions []KafkaCluster Roles Head Node Script Action - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - Ssh
Keys []string A list of SSH Keys which should be used for the local administrator on the Head Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- username String
- The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Head Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password String
The Password associated with the local administrator for the Head Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script
Actions List<KafkaCluster Roles Head Node Script Action> - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh
Keys List<String> A list of SSH Keys which should be used for the local administrator on the Head Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet
Id String - The ID of the Subnet within the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- username string
- The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- vm
Size string - The Size of the Virtual Machine which should be used as the Head Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password string
The Password associated with the local administrator for the Head Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script
Actions KafkaCluster Roles Head Node Script Action[] - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh
Keys string[] A list of SSH Keys which should be used for the local administrator on the Head Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet
Id string - The ID of the Subnet within the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network stringId - The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- username str
- The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- vm_
size str - The Size of the Virtual Machine which should be used as the Head Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password str
The Password associated with the local administrator for the Head Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script_
actions Sequence[KafkaCluster Roles Head Node Script Action] - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh_
keys Sequence[str] A list of SSH Keys which should be used for the local administrator on the Head Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet_
id str - The ID of the Subnet within the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual_
network_ strid - The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- username String
- The Username of the local administrator for the Head Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Head Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password String
The Password associated with the local administrator for the Head Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script
Actions List<Property Map> - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh
Keys List<String> A list of SSH Keys which should be used for the local administrator on the Head Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet
Id String - The ID of the Subnet within the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Head Nodes should be provisioned within. Changing this forces a new resource to be created.
KafkaClusterRolesHeadNodeScriptAction, KafkaClusterRolesHeadNodeScriptActionArgs
- Name string
- The name of the script action.
- Uri string
- The URI to the script.
- Parameters string
- The parameters for the script provided.
- Name string
- The name of the script action.
- Uri string
- The URI to the script.
- Parameters string
- The parameters for the script provided.
- name String
- The name of the script action.
- uri String
- The URI to the script.
- parameters String
- The parameters for the script provided.
- name string
- The name of the script action.
- uri string
- The URI to the script.
- parameters string
- The parameters for the script provided.
- name str
- The name of the script action.
- uri str
- The URI to the script.
- parameters str
- The parameters for the script provided.
- name String
- The name of the script action.
- uri String
- The URI to the script.
- parameters String
- The parameters for the script provided.
KafkaClusterRolesKafkaManagementNode, KafkaClusterRolesKafkaManagementNodeArgs
- Username string
- The Username of the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Kafka Management Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - Password string
The Password associated with the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- Script
Actions List<KafkaCluster Roles Kafka Management Node Script Action> - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - Ssh
Keys List<string> A list of SSH Keys which should be used for the local administrator on the Kafka Management Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
- Username string
- The Username of the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Kafka Management Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - Password string
The Password associated with the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- Script
Actions []KafkaCluster Roles Kafka Management Node Script Action - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - Ssh
Keys []string A list of SSH Keys which should be used for the local administrator on the Kafka Management Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
- username String
- The Username of the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Kafka Management Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password String
The Password associated with the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script
Actions List<KafkaCluster Roles Kafka Management Node Script Action> - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh
Keys List<String> A list of SSH Keys which should be used for the local administrator on the Kafka Management Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet
Id String - The ID of the Subnet within the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
- username string
- The Username of the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
- vm
Size string - The Size of the Virtual Machine which should be used as the Kafka Management Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password string
The Password associated with the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script
Actions KafkaCluster Roles Kafka Management Node Script Action[] - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh
Keys string[] A list of SSH Keys which should be used for the local administrator on the Kafka Management Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet
Id string - The ID of the Subnet within the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network stringId - The ID of the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
- username str
- The Username of the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
- vm_
size str - The Size of the Virtual Machine which should be used as the Kafka Management Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password str
The Password associated with the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script_
actions Sequence[KafkaCluster Roles Kafka Management Node Script Action] - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh_
keys Sequence[str] A list of SSH Keys which should be used for the local administrator on the Kafka Management Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet_
id str - The ID of the Subnet within the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual_
network_ strid - The ID of the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
- username String
- The Username of the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Kafka Management Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password String
The Password associated with the local administrator for the Kafka Management Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script
Actions List<Property Map> - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh
Keys List<String> A list of SSH Keys which should be used for the local administrator on the Kafka Management Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet
Id String - The ID of the Subnet within the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Kafka Management Nodes should be provisioned within. Changing this forces a new resource to be created.
KafkaClusterRolesKafkaManagementNodeScriptAction, KafkaClusterRolesKafkaManagementNodeScriptActionArgs
- Name string
- The name of the script action.
- Uri string
- The URI to the script.
- Parameters string
- The parameters for the script provided.
- Name string
- The name of the script action.
- Uri string
- The URI to the script.
- Parameters string
- The parameters for the script provided.
- name String
- The name of the script action.
- uri String
- The URI to the script.
- parameters String
- The parameters for the script provided.
- name string
- The name of the script action.
- uri string
- The URI to the script.
- parameters string
- The parameters for the script provided.
- name str
- The name of the script action.
- uri str
- The URI to the script.
- parameters str
- The parameters for the script provided.
- name String
- The name of the script action.
- uri String
- The URI to the script.
- parameters String
- The parameters for the script provided.
KafkaClusterRolesWorkerNode, KafkaClusterRolesWorkerNodeArgs
- Number
Of intDisks Per Node - The number of Data Disks which should be assigned to each Worker Node, which can be between 1 and 8. Changing this forces a new resource to be created.
- Target
Instance intCount - The number of instances which should be run for the Worker Nodes.
- Username string
- The Username of the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Worker Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - Password string
The Password associated with the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- Script
Actions List<KafkaCluster Roles Worker Node Script Action> - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - Ssh
Keys List<string> A list of SSH Keys which should be used for the local administrator on the Worker Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- Number
Of intDisks Per Node - The number of Data Disks which should be assigned to each Worker Node, which can be between 1 and 8. Changing this forces a new resource to be created.
- Target
Instance intCount - The number of instances which should be run for the Worker Nodes.
- Username string
- The Username of the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Worker Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - Password string
The Password associated with the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- Script
Actions []KafkaCluster Roles Worker Node Script Action - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - Ssh
Keys []string A list of SSH Keys which should be used for the local administrator on the Worker Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- number
Of IntegerDisks Per Node - The number of Data Disks which should be assigned to each Worker Node, which can be between 1 and 8. Changing this forces a new resource to be created.
- target
Instance IntegerCount - The number of instances which should be run for the Worker Nodes.
- username String
- The Username of the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Worker Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password String
The Password associated with the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script
Actions List<KafkaCluster Roles Worker Node Script Action> - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh
Keys List<String> A list of SSH Keys which should be used for the local administrator on the Worker Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet
Id String - The ID of the Subnet within the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- number
Of numberDisks Per Node - The number of Data Disks which should be assigned to each Worker Node, which can be between 1 and 8. Changing this forces a new resource to be created.
- target
Instance numberCount - The number of instances which should be run for the Worker Nodes.
- username string
- The Username of the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- vm
Size string - The Size of the Virtual Machine which should be used as the Worker Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password string
The Password associated with the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script
Actions KafkaCluster Roles Worker Node Script Action[] - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh
Keys string[] A list of SSH Keys which should be used for the local administrator on the Worker Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet
Id string - The ID of the Subnet within the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network stringId - The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- number_
of_ intdisks_ per_ node - The number of Data Disks which should be assigned to each Worker Node, which can be between 1 and 8. Changing this forces a new resource to be created.
- target_
instance_ intcount - The number of instances which should be run for the Worker Nodes.
- username str
- The Username of the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- vm_
size str - The Size of the Virtual Machine which should be used as the Worker Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password str
The Password associated with the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script_
actions Sequence[KafkaCluster Roles Worker Node Script Action] - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh_
keys Sequence[str] A list of SSH Keys which should be used for the local administrator on the Worker Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet_
id str - The ID of the Subnet within the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual_
network_ strid - The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- number
Of NumberDisks Per Node - The number of Data Disks which should be assigned to each Worker Node, which can be between 1 and 8. Changing this forces a new resource to be created.
- target
Instance NumberCount - The number of instances which should be run for the Worker Nodes.
- username String
- The Username of the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Worker Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password String
The Password associated with the local administrator for the Worker Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script
Actions List<Property Map> - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh
Keys List<String> A list of SSH Keys which should be used for the local administrator on the Worker Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet
Id String - The ID of the Subnet within the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Worker Nodes should be provisioned within. Changing this forces a new resource to be created.
KafkaClusterRolesWorkerNodeScriptAction, KafkaClusterRolesWorkerNodeScriptActionArgs
- Name string
- The name of the script action.
- Uri string
- The URI to the script.
- Parameters string
- The parameters for the script provided.
- Name string
- The name of the script action.
- Uri string
- The URI to the script.
- Parameters string
- The parameters for the script provided.
- name String
- The name of the script action.
- uri String
- The URI to the script.
- parameters String
- The parameters for the script provided.
- name string
- The name of the script action.
- uri string
- The URI to the script.
- parameters string
- The parameters for the script provided.
- name str
- The name of the script action.
- uri str
- The URI to the script.
- parameters str
- The parameters for the script provided.
- name String
- The name of the script action.
- uri String
- The URI to the script.
- parameters String
- The parameters for the script provided.
KafkaClusterRolesZookeeperNode, KafkaClusterRolesZookeeperNodeArgs
- Username string
- The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - Password string
The Password associated with the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- Script
Actions List<KafkaCluster Roles Zookeeper Node Script Action> - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - Ssh
Keys List<string> A list of SSH Keys which should be used for the local administrator on the Zookeeper Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- Username string
- The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- Vm
Size string - The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - Password string
The Password associated with the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- Script
Actions []KafkaCluster Roles Zookeeper Node Script Action - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - Ssh
Keys []string A list of SSH Keys which should be used for the local administrator on the Zookeeper Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- Subnet
Id string - The ID of the Subnet within the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- Virtual
Network stringId - The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- username String
- The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password String
The Password associated with the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script
Actions List<KafkaCluster Roles Zookeeper Node Script Action> - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh
Keys List<String> A list of SSH Keys which should be used for the local administrator on the Zookeeper Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet
Id String - The ID of the Subnet within the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- username string
- The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- vm
Size string - The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password string
The Password associated with the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script
Actions KafkaCluster Roles Zookeeper Node Script Action[] - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh
Keys string[] A list of SSH Keys which should be used for the local administrator on the Zookeeper Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet
Id string - The ID of the Subnet within the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network stringId - The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- username str
- The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- vm_
size str - The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password str
The Password associated with the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script_
actions Sequence[KafkaCluster Roles Zookeeper Node Script Action] - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh_
keys Sequence[str] A list of SSH Keys which should be used for the local administrator on the Zookeeper Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet_
id str - The ID of the Subnet within the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual_
network_ strid - The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- username String
- The Username of the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
- vm
Size String - The Size of the Virtual Machine which should be used as the Zookeeper Nodes. Possible values are
ExtraSmall
,Small
,Medium
,Large
,ExtraLarge
,A5
,A6
,A7
,A8
,A9
,A10
,A11
,Standard_A1_V2
,Standard_A2_V2
,Standard_A2m_V2
,Standard_A3
,Standard_A4_V2
,Standard_A4m_V2
,Standard_A8_V2
,Standard_A8m_V2
,Standard_D1
,Standard_D2
,Standard_D3
,Standard_D4
,Standard_D11
,Standard_D12
,Standard_D13
,Standard_D14
,Standard_D1_V2
,Standard_D2_V2
,Standard_D3_V2
,Standard_D4_V2
,Standard_D5_V2
,Standard_D11_V2
,Standard_D12_V2
,Standard_D13_V2
,Standard_D14_V2
,Standard_DS1_V2
,Standard_DS2_V2
,Standard_DS3_V2
,Standard_DS4_V2
,Standard_DS5_V2
,Standard_DS11_V2
,Standard_DS12_V2
,Standard_DS13_V2
,Standard_DS14_V2
,Standard_E2_V3
,Standard_E4_V3
,Standard_E8_V3
,Standard_E16_V3
,Standard_E20_V3
,Standard_E32_V3
,Standard_E64_V3
,Standard_E64i_V3
,Standard_E2s_V3
,Standard_E4s_V3
,Standard_E8s_V3
,Standard_E16s_V3
,Standard_E20s_V3
,Standard_E32s_V3
,Standard_E64s_V3
,Standard_E64is_V3
,Standard_D2a_V4
,Standard_D4a_V4
,Standard_D8a_V4
,Standard_D16a_V4
,Standard_D32a_V4
,Standard_D48a_V4
,Standard_D64a_V4
,Standard_D96a_V4
,Standard_E2a_V4
,Standard_E4a_V4
,Standard_E8a_V4
,Standard_E16a_V4
,Standard_E20a_V4
,Standard_E32a_V4
,Standard_E48a_V4
,Standard_E64a_V4
,Standard_E96a_V4
,Standard_G1
,Standard_G2
,Standard_G3
,Standard_G4
,Standard_G5
,Standard_F2s_V2
,Standard_F4s_V2
,Standard_F8s_V2
,Standard_F16s_V2
,Standard_F32s_V2
,Standard_F64s_V2
,Standard_F72s_V2
,Standard_GS1
,Standard_GS2
,Standard_GS3
,Standard_GS4
,Standard_GS5
andStandard_NC24
. Changing this forces a new resource to be created. - password String
The Password associated with the local administrator for the Zookeeper Nodes. Changing this forces a new resource to be created.
NOTE: If specified, this password must be at least 10 characters in length and must contain at least one digit, one uppercase and one lower case letter, one non-alphanumeric character (except characters ' " ` ).
- script
Actions List<Property Map> - The script action which will run on the cluster. One or more
script_actions
blocks as defined below. - ssh
Keys List<String> A list of SSH Keys which should be used for the local administrator on the Zookeeper Nodes. Changing this forces a new resource to be created.
NOTE: Either a
password
or one or moressh_keys
must be specified - but not both.- subnet
Id String - The ID of the Subnet within the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
- virtual
Network StringId - The ID of the Virtual Network where the Zookeeper Nodes should be provisioned within. Changing this forces a new resource to be created.
KafkaClusterRolesZookeeperNodeScriptAction, KafkaClusterRolesZookeeperNodeScriptActionArgs
- Name string
- The name of the script action.
- Uri string
- The URI to the script.
- Parameters string
- The parameters for the script provided.
- Name string
- The name of the script action.
- Uri string
- The URI to the script.
- Parameters string
- The parameters for the script provided.
- name String
- The name of the script action.
- uri String
- The URI to the script.
- parameters String
- The parameters for the script provided.
- name string
- The name of the script action.
- uri string
- The URI to the script.
- parameters string
- The parameters for the script provided.
- name str
- The name of the script action.
- uri str
- The URI to the script.
- parameters str
- The parameters for the script provided.
- name String
- The name of the script action.
- uri String
- The URI to the script.
- parameters String
- The parameters for the script provided.
KafkaClusterSecurityProfile, KafkaClusterSecurityProfileArgs
- Aadds
Resource stringId - The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
- Domain
Name string - The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- Domain
User stringPassword - The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- Domain
Username string - The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- Ldaps
Urls List<string> - A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
- Msi
Resource stringId - The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
- Cluster
Users List<string>Group Dns - A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
- Aadds
Resource stringId - The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
- Domain
Name string - The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- Domain
User stringPassword - The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- Domain
Username string - The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- Ldaps
Urls []string - A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
- Msi
Resource stringId - The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
- Cluster
Users []stringGroup Dns - A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
- aadds
Resource StringId - The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
- domain
Name String - The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain
User StringPassword - The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain
Username String - The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- ldaps
Urls List<String> - A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
- msi
Resource StringId - The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
- cluster
Users List<String>Group Dns - A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
- aadds
Resource stringId - The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
- domain
Name string - The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain
User stringPassword - The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain
Username string - The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- ldaps
Urls string[] - A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
- msi
Resource stringId - The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
- cluster
Users string[]Group Dns - A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
- aadds_
resource_ strid - The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
- domain_
name str - The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain_
user_ strpassword - The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain_
username str - The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- ldaps_
urls Sequence[str] - A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
- msi_
resource_ strid - The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
- cluster_
users_ Sequence[str]group_ dns - A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
- aadds
Resource StringId - The resource ID of the Azure Active Directory Domain Service. Changing this forces a new resource to be created.
- domain
Name String - The name of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain
User StringPassword - The user password of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- domain
Username String - The username of the Azure Active Directory Domain. Changing this forces a new resource to be created.
- ldaps
Urls List<String> - A list of the LDAPS URLs to communicate with the Azure Active Directory. Changing this forces a new resource to be created.
- msi
Resource StringId - The User Assigned Identity for the HDInsight Cluster. Changing this forces a new resource to be created.
- cluster
Users List<String>Group Dns - A list of the distinguished names for the cluster user groups. Changing this forces a new resource to be created.
KafkaClusterStorageAccount, KafkaClusterStorageAccountArgs
- Is
Default bool Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
NOTE: One of the
storage_account
orstorage_account_gen2
blocks must be marked as the default.- Storage
Account stringKey - The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
- Storage
Container stringId The ID of the Storage Container. Changing this forces a new resource to be created.
NOTE: This can be obtained from the
id
of theazure.storage.Container
resource.- Storage
Resource stringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- Is
Default bool Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
NOTE: One of the
storage_account
orstorage_account_gen2
blocks must be marked as the default.- Storage
Account stringKey - The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
- Storage
Container stringId The ID of the Storage Container. Changing this forces a new resource to be created.
NOTE: This can be obtained from the
id
of theazure.storage.Container
resource.- Storage
Resource stringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- is
Default Boolean Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
NOTE: One of the
storage_account
orstorage_account_gen2
blocks must be marked as the default.- storage
Account StringKey - The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
- storage
Container StringId The ID of the Storage Container. Changing this forces a new resource to be created.
NOTE: This can be obtained from the
id
of theazure.storage.Container
resource.- storage
Resource StringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- is
Default boolean Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
NOTE: One of the
storage_account
orstorage_account_gen2
blocks must be marked as the default.- storage
Account stringKey - The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
- storage
Container stringId The ID of the Storage Container. Changing this forces a new resource to be created.
NOTE: This can be obtained from the
id
of theazure.storage.Container
resource.- storage
Resource stringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- is_
default bool Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
NOTE: One of the
storage_account
orstorage_account_gen2
blocks must be marked as the default.- storage_
account_ strkey - The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
- storage_
container_ strid The ID of the Storage Container. Changing this forces a new resource to be created.
NOTE: This can be obtained from the
id
of theazure.storage.Container
resource.- storage_
resource_ strid - The ID of the Storage Account. Changing this forces a new resource to be created.
- is
Default Boolean Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
NOTE: One of the
storage_account
orstorage_account_gen2
blocks must be marked as the default.- storage
Account StringKey - The Access Key which should be used to connect to the Storage Account. Changing this forces a new resource to be created.
- storage
Container StringId The ID of the Storage Container. Changing this forces a new resource to be created.
NOTE: This can be obtained from the
id
of theazure.storage.Container
resource.- storage
Resource StringId - The ID of the Storage Account. Changing this forces a new resource to be created.
KafkaClusterStorageAccountGen2, KafkaClusterStorageAccountGen2Args
- Filesystem
Id string - The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
- Is
Default bool Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
NOTE: One of the
storage_account
orstorage_account_gen2
blocks must be marked as the default.- Managed
Identity stringResource Id The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
NOTE: This can be obtained from the
id
of theazure.storage.Container
resource.- Storage
Resource stringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- Filesystem
Id string - The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
- Is
Default bool Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
NOTE: One of the
storage_account
orstorage_account_gen2
blocks must be marked as the default.- Managed
Identity stringResource Id The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
NOTE: This can be obtained from the
id
of theazure.storage.Container
resource.- Storage
Resource stringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- filesystem
Id String - The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
- is
Default Boolean Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
NOTE: One of the
storage_account
orstorage_account_gen2
blocks must be marked as the default.- managed
Identity StringResource Id The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
NOTE: This can be obtained from the
id
of theazure.storage.Container
resource.- storage
Resource StringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- filesystem
Id string - The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
- is
Default boolean Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
NOTE: One of the
storage_account
orstorage_account_gen2
blocks must be marked as the default.- managed
Identity stringResource Id The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
NOTE: This can be obtained from the
id
of theazure.storage.Container
resource.- storage
Resource stringId - The ID of the Storage Account. Changing this forces a new resource to be created.
- filesystem_
id str - The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
- is_
default bool Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
NOTE: One of the
storage_account
orstorage_account_gen2
blocks must be marked as the default.- managed_
identity_ strresource_ id The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
NOTE: This can be obtained from the
id
of theazure.storage.Container
resource.- storage_
resource_ strid - The ID of the Storage Account. Changing this forces a new resource to be created.
- filesystem
Id String - The ID of the Gen2 Filesystem. Changing this forces a new resource to be created.
- is
Default Boolean Is this the Default Storage Account for the HDInsight Hadoop Cluster? Changing this forces a new resource to be created.
NOTE: One of the
storage_account
orstorage_account_gen2
blocks must be marked as the default.- managed
Identity StringResource Id The ID of Managed Identity to use for accessing the Gen2 filesystem. Changing this forces a new resource to be created.
NOTE: This can be obtained from the
id
of theazure.storage.Container
resource.- storage
Resource StringId - The ID of the Storage Account. Changing this forces a new resource to be created.
Import
HDInsight Kafka Clusters can be imported using the resource id
, e.g.
$ pulumi import azure:hdinsight/kafkaCluster:KafkaCluster example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.HDInsight/clusters/cluster1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.