Cluster Args
data class ClusterArgs(val allowedFqdns: Output<List<String>>? = null, val allowedIpRanges: Output<List<String>>? = null, val autoStopEnabled: Output<Boolean>? = null, val diskEncryptionEnabled: Output<Boolean>? = null, val doubleEncryptionEnabled: Output<Boolean>? = null, val engine: Output<String>? = null, val identity: Output<ClusterIdentityArgs>? = null, val languageExtensions: Output<List<String>>? = null, val location: Output<String>? = null, val name: Output<String>? = null, val optimizedAutoScale: Output<ClusterOptimizedAutoScaleArgs>? = null, val outboundNetworkAccessRestricted: Output<Boolean>? = null, val publicIpType: Output<String>? = null, val publicNetworkAccessEnabled: Output<Boolean>? = null, val purgeEnabled: Output<Boolean>? = null, val resourceGroupName: Output<String>? = null, val sku: Output<ClusterSkuArgs>? = null, val streamingIngestionEnabled: Output<Boolean>? = null, val tags: Output<Map<String, String>>? = null, val trustedExternalTenants: Output<List<String>>? = null, val virtualNetworkConfiguration: Output<ClusterVirtualNetworkConfigurationArgs>? = null, val zones: Output<List<String>>? = null) : ConvertibleToJava<ClusterArgs>
Manages a Kusto (also known as Azure Data Explorer) Cluster
Example Usage
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.kusto.Cluster;
import com.pulumi.azure.kusto.ClusterArgs;
import com.pulumi.azure.kusto.inputs.ClusterSkuArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleCluster = new Cluster("exampleCluster", ClusterArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.sku(ClusterSkuArgs.builder()
.name("Standard_D13_v2")
.capacity(2)
.build())
.tags(Map.of("Environment", "Production"))
.build());
}
}
Content copied to clipboard
Import
Kusto Clusters can be imported using the resource id
, e.g.
$ pulumi import azure:kusto/cluster:Cluster example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Kusto/clusters/cluster1
Content copied to clipboard
Constructors
Link copied to clipboard
fun ClusterArgs(allowedFqdns: Output<List<String>>? = null, allowedIpRanges: Output<List<String>>? = null, autoStopEnabled: Output<Boolean>? = null, diskEncryptionEnabled: Output<Boolean>? = null, doubleEncryptionEnabled: Output<Boolean>? = null, engine: Output<String>? = null, identity: Output<ClusterIdentityArgs>? = null, languageExtensions: Output<List<String>>? = null, location: Output<String>? = null, name: Output<String>? = null, optimizedAutoScale: Output<ClusterOptimizedAutoScaleArgs>? = null, outboundNetworkAccessRestricted: Output<Boolean>? = null, publicIpType: Output<String>? = null, publicNetworkAccessEnabled: Output<Boolean>? = null, purgeEnabled: Output<Boolean>? = null, resourceGroupName: Output<String>? = null, sku: Output<ClusterSkuArgs>? = null, streamingIngestionEnabled: Output<Boolean>? = null, tags: Output<Map<String, String>>? = null, trustedExternalTenants: Output<List<String>>? = null, virtualNetworkConfiguration: Output<ClusterVirtualNetworkConfigurationArgs>? = null, zones: Output<List<String>>? = null)
Functions
Properties
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Specifies a list of tenant IDs that are trusted by the cluster. Default setting trusts all other tenants. Use trusted_external_tenants = ["*"]
to explicitly allow all other tenants, trusted_external_tenants = ["MyTenantOnly"]
for only your tenant or trusted_external_tenants = ["<tenantId1>", "<tenantIdx>"]
to allow specific other tenants.