1. Packages
  2. Azure Classic
  3. API Docs
  4. loganalytics
  5. StorageInsights

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.loganalytics.StorageInsights

Explore with Pulumi AI

Manages a Log Analytics Storage Insights resource.

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 exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("example", {
    name: "exampleworkspace",
    location: example.location,
    resourceGroupName: example.name,
    sku: "PerGB2018",
    retentionInDays: 30,
});
const exampleAccount = new azure.storage.Account("example", {
    name: "examplestoracc",
    resourceGroupName: example.name,
    location: example.location,
    accountTier: "Standard",
    accountReplicationType: "LRS",
});
const exampleStorageInsights = new azure.loganalytics.StorageInsights("example", {
    name: "example-storageinsightconfig",
    resourceGroupName: example.name,
    workspaceId: exampleAnalyticsWorkspace.id,
    storageAccountId: exampleAccount.id,
    storageAccountKey: exampleAccount.primaryAccessKey,
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_analytics_workspace = azure.operationalinsights.AnalyticsWorkspace("example",
    name="exampleworkspace",
    location=example.location,
    resource_group_name=example.name,
    sku="PerGB2018",
    retention_in_days=30)
example_account = azure.storage.Account("example",
    name="examplestoracc",
    resource_group_name=example.name,
    location=example.location,
    account_tier="Standard",
    account_replication_type="LRS")
example_storage_insights = azure.loganalytics.StorageInsights("example",
    name="example-storageinsightconfig",
    resource_group_name=example.name,
    workspace_id=example_analytics_workspace.id,
    storage_account_id=example_account.id,
    storage_account_key=example_account.primary_access_key)
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/loganalytics"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/operationalinsights"
	"github.com/pulumi/pulumi-azure/sdk/v6/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
		}
		exampleAnalyticsWorkspace, err := operationalinsights.NewAnalyticsWorkspace(ctx, "example", &operationalinsights.AnalyticsWorkspaceArgs{
			Name:              pulumi.String("exampleworkspace"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
			Sku:               pulumi.String("PerGB2018"),
			RetentionInDays:   pulumi.Int(30),
		})
		if err != nil {
			return err
		}
		exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
			Name:                   pulumi.String("examplestoracc"),
			ResourceGroupName:      example.Name,
			Location:               example.Location,
			AccountTier:            pulumi.String("Standard"),
			AccountReplicationType: pulumi.String("LRS"),
		})
		if err != nil {
			return err
		}
		_, err = loganalytics.NewStorageInsights(ctx, "example", &loganalytics.StorageInsightsArgs{
			Name:              pulumi.String("example-storageinsightconfig"),
			ResourceGroupName: example.Name,
			WorkspaceId:       exampleAnalyticsWorkspace.ID(),
			StorageAccountId:  exampleAccount.ID(),
			StorageAccountKey: exampleAccount.PrimaryAccessKey,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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 exampleAnalyticsWorkspace = new Azure.OperationalInsights.AnalyticsWorkspace("example", new()
    {
        Name = "exampleworkspace",
        Location = example.Location,
        ResourceGroupName = example.Name,
        Sku = "PerGB2018",
        RetentionInDays = 30,
    });

    var exampleAccount = new Azure.Storage.Account("example", new()
    {
        Name = "examplestoracc",
        ResourceGroupName = example.Name,
        Location = example.Location,
        AccountTier = "Standard",
        AccountReplicationType = "LRS",
    });

    var exampleStorageInsights = new Azure.LogAnalytics.StorageInsights("example", new()
    {
        Name = "example-storageinsightconfig",
        ResourceGroupName = example.Name,
        WorkspaceId = exampleAnalyticsWorkspace.Id,
        StorageAccountId = exampleAccount.Id,
        StorageAccountKey = exampleAccount.PrimaryAccessKey,
    });

});
Copy
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.operationalinsights.AnalyticsWorkspace;
import com.pulumi.azure.operationalinsights.AnalyticsWorkspaceArgs;
import com.pulumi.azure.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.loganalytics.StorageInsights;
import com.pulumi.azure.loganalytics.StorageInsightsArgs;
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 exampleAnalyticsWorkspace = new AnalyticsWorkspace("exampleAnalyticsWorkspace", AnalyticsWorkspaceArgs.builder()
            .name("exampleworkspace")
            .location(example.location())
            .resourceGroupName(example.name())
            .sku("PerGB2018")
            .retentionInDays(30)
            .build());

        var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
            .name("examplestoracc")
            .resourceGroupName(example.name())
            .location(example.location())
            .accountTier("Standard")
            .accountReplicationType("LRS")
            .build());

        var exampleStorageInsights = new StorageInsights("exampleStorageInsights", StorageInsightsArgs.builder()
            .name("example-storageinsightconfig")
            .resourceGroupName(example.name())
            .workspaceId(exampleAnalyticsWorkspace.id())
            .storageAccountId(exampleAccount.id())
            .storageAccountKey(exampleAccount.primaryAccessKey())
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleAnalyticsWorkspace:
    type: azure:operationalinsights:AnalyticsWorkspace
    name: example
    properties:
      name: exampleworkspace
      location: ${example.location}
      resourceGroupName: ${example.name}
      sku: PerGB2018
      retentionInDays: 30
  exampleAccount:
    type: azure:storage:Account
    name: example
    properties:
      name: examplestoracc
      resourceGroupName: ${example.name}
      location: ${example.location}
      accountTier: Standard
      accountReplicationType: LRS
  exampleStorageInsights:
    type: azure:loganalytics:StorageInsights
    name: example
    properties:
      name: example-storageinsightconfig
      resourceGroupName: ${example.name}
      workspaceId: ${exampleAnalyticsWorkspace.id}
      storageAccountId: ${exampleAccount.id}
      storageAccountKey: ${exampleAccount.primaryAccessKey}
Copy

Create StorageInsights Resource

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

Constructor syntax

new StorageInsights(name: string, args: StorageInsightsArgs, opts?: CustomResourceOptions);
@overload
def StorageInsights(resource_name: str,
                    args: StorageInsightsArgs,
                    opts: Optional[ResourceOptions] = None)

@overload
def StorageInsights(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    resource_group_name: Optional[str] = None,
                    storage_account_id: Optional[str] = None,
                    storage_account_key: Optional[str] = None,
                    workspace_id: Optional[str] = None,
                    blob_container_names: Optional[Sequence[str]] = None,
                    name: Optional[str] = None,
                    table_names: Optional[Sequence[str]] = None)
func NewStorageInsights(ctx *Context, name string, args StorageInsightsArgs, opts ...ResourceOption) (*StorageInsights, error)
public StorageInsights(string name, StorageInsightsArgs args, CustomResourceOptions? opts = null)
public StorageInsights(String name, StorageInsightsArgs args)
public StorageInsights(String name, StorageInsightsArgs args, CustomResourceOptions options)
type: azure:loganalytics:StorageInsights
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. StorageInsightsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. StorageInsightsArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. StorageInsightsArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. StorageInsightsArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. StorageInsightsArgs
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 storageInsightsResource = new Azure.LogAnalytics.StorageInsights("storageInsightsResource", new()
{
    ResourceGroupName = "string",
    StorageAccountId = "string",
    StorageAccountKey = "string",
    WorkspaceId = "string",
    BlobContainerNames = new[]
    {
        "string",
    },
    Name = "string",
    TableNames = new[]
    {
        "string",
    },
});
Copy
example, err := loganalytics.NewStorageInsights(ctx, "storageInsightsResource", &loganalytics.StorageInsightsArgs{
	ResourceGroupName: pulumi.String("string"),
	StorageAccountId:  pulumi.String("string"),
	StorageAccountKey: pulumi.String("string"),
	WorkspaceId:       pulumi.String("string"),
	BlobContainerNames: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name: pulumi.String("string"),
	TableNames: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var storageInsightsResource = new StorageInsights("storageInsightsResource", StorageInsightsArgs.builder()
    .resourceGroupName("string")
    .storageAccountId("string")
    .storageAccountKey("string")
    .workspaceId("string")
    .blobContainerNames("string")
    .name("string")
    .tableNames("string")
    .build());
Copy
storage_insights_resource = azure.loganalytics.StorageInsights("storageInsightsResource",
    resource_group_name="string",
    storage_account_id="string",
    storage_account_key="string",
    workspace_id="string",
    blob_container_names=["string"],
    name="string",
    table_names=["string"])
Copy
const storageInsightsResource = new azure.loganalytics.StorageInsights("storageInsightsResource", {
    resourceGroupName: "string",
    storageAccountId: "string",
    storageAccountKey: "string",
    workspaceId: "string",
    blobContainerNames: ["string"],
    name: "string",
    tableNames: ["string"],
});
Copy
type: azure:loganalytics:StorageInsights
properties:
    blobContainerNames:
        - string
    name: string
    resourceGroupName: string
    storageAccountId: string
    storageAccountKey: string
    tableNames:
        - string
    workspaceId: string
Copy

StorageInsights Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The StorageInsights resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Log Analytics Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
StorageAccountId This property is required. string
The ID of the Storage Account used by this Log Analytics Storage Insights.
StorageAccountKey This property is required. string
The storage access key to be used to connect to the storage account.
WorkspaceId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Log Analytics Workspace within which the Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
BlobContainerNames List<string>
The names of the blob containers that the workspace should read.
Name Changes to this property will trigger replacement. string
The name which should be used for this Log Analytics Storage Insights. Changing this forces a new Log Analytics Storage Insights to be created.
TableNames List<string>
The names of the Azure tables that the workspace should read.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Log Analytics Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
StorageAccountId This property is required. string
The ID of the Storage Account used by this Log Analytics Storage Insights.
StorageAccountKey This property is required. string
The storage access key to be used to connect to the storage account.
WorkspaceId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Log Analytics Workspace within which the Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
BlobContainerNames []string
The names of the blob containers that the workspace should read.
Name Changes to this property will trigger replacement. string
The name which should be used for this Log Analytics Storage Insights. Changing this forces a new Log Analytics Storage Insights to be created.
TableNames []string
The names of the Azure tables that the workspace should read.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Log Analytics Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
storageAccountId This property is required. String
The ID of the Storage Account used by this Log Analytics Storage Insights.
storageAccountKey This property is required. String
The storage access key to be used to connect to the storage account.
workspaceId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Log Analytics Workspace within which the Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
blobContainerNames List<String>
The names of the blob containers that the workspace should read.
name Changes to this property will trigger replacement. String
The name which should be used for this Log Analytics Storage Insights. Changing this forces a new Log Analytics Storage Insights to be created.
tableNames List<String>
The names of the Azure tables that the workspace should read.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Resource Group where the Log Analytics Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
storageAccountId This property is required. string
The ID of the Storage Account used by this Log Analytics Storage Insights.
storageAccountKey This property is required. string
The storage access key to be used to connect to the storage account.
workspaceId
This property is required.
Changes to this property will trigger replacement.
string
The ID of the Log Analytics Workspace within which the Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
blobContainerNames string[]
The names of the blob containers that the workspace should read.
name Changes to this property will trigger replacement. string
The name which should be used for this Log Analytics Storage Insights. Changing this forces a new Log Analytics Storage Insights to be created.
tableNames string[]
The names of the Azure tables that the workspace should read.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Resource Group where the Log Analytics Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
storage_account_id This property is required. str
The ID of the Storage Account used by this Log Analytics Storage Insights.
storage_account_key This property is required. str
The storage access key to be used to connect to the storage account.
workspace_id
This property is required.
Changes to this property will trigger replacement.
str
The ID of the Log Analytics Workspace within which the Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
blob_container_names Sequence[str]
The names of the blob containers that the workspace should read.
name Changes to this property will trigger replacement. str
The name which should be used for this Log Analytics Storage Insights. Changing this forces a new Log Analytics Storage Insights to be created.
table_names Sequence[str]
The names of the Azure tables that the workspace should read.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Resource Group where the Log Analytics Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
storageAccountId This property is required. String
The ID of the Storage Account used by this Log Analytics Storage Insights.
storageAccountKey This property is required. String
The storage access key to be used to connect to the storage account.
workspaceId
This property is required.
Changes to this property will trigger replacement.
String
The ID of the Log Analytics Workspace within which the Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
blobContainerNames List<String>
The names of the blob containers that the workspace should read.
name Changes to this property will trigger replacement. String
The name which should be used for this Log Analytics Storage Insights. Changing this forces a new Log Analytics Storage Insights to be created.
tableNames List<String>
The names of the Azure tables that the workspace should read.

Outputs

All input properties are implicitly available as output properties. Additionally, the StorageInsights resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing StorageInsights Resource

Get an existing StorageInsights 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?: StorageInsightsState, opts?: CustomResourceOptions): StorageInsights
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        blob_container_names: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        storage_account_id: Optional[str] = None,
        storage_account_key: Optional[str] = None,
        table_names: Optional[Sequence[str]] = None,
        workspace_id: Optional[str] = None) -> StorageInsights
func GetStorageInsights(ctx *Context, name string, id IDInput, state *StorageInsightsState, opts ...ResourceOption) (*StorageInsights, error)
public static StorageInsights Get(string name, Input<string> id, StorageInsightsState? state, CustomResourceOptions? opts = null)
public static StorageInsights get(String name, Output<String> id, StorageInsightsState state, CustomResourceOptions options)
resources:  _:    type: azure:loganalytics:StorageInsights    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
BlobContainerNames List<string>
The names of the blob containers that the workspace should read.
Name Changes to this property will trigger replacement. string
The name which should be used for this Log Analytics Storage Insights. Changing this forces a new Log Analytics Storage Insights to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Log Analytics Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
StorageAccountId string
The ID of the Storage Account used by this Log Analytics Storage Insights.
StorageAccountKey string
The storage access key to be used to connect to the storage account.
TableNames List<string>
The names of the Azure tables that the workspace should read.
WorkspaceId Changes to this property will trigger replacement. string
The ID of the Log Analytics Workspace within which the Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
BlobContainerNames []string
The names of the blob containers that the workspace should read.
Name Changes to this property will trigger replacement. string
The name which should be used for this Log Analytics Storage Insights. Changing this forces a new Log Analytics Storage Insights to be created.
ResourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Log Analytics Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
StorageAccountId string
The ID of the Storage Account used by this Log Analytics Storage Insights.
StorageAccountKey string
The storage access key to be used to connect to the storage account.
TableNames []string
The names of the Azure tables that the workspace should read.
WorkspaceId Changes to this property will trigger replacement. string
The ID of the Log Analytics Workspace within which the Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
blobContainerNames List<String>
The names of the blob containers that the workspace should read.
name Changes to this property will trigger replacement. String
The name which should be used for this Log Analytics Storage Insights. Changing this forces a new Log Analytics Storage Insights to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Log Analytics Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
storageAccountId String
The ID of the Storage Account used by this Log Analytics Storage Insights.
storageAccountKey String
The storage access key to be used to connect to the storage account.
tableNames List<String>
The names of the Azure tables that the workspace should read.
workspaceId Changes to this property will trigger replacement. String
The ID of the Log Analytics Workspace within which the Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
blobContainerNames string[]
The names of the blob containers that the workspace should read.
name Changes to this property will trigger replacement. string
The name which should be used for this Log Analytics Storage Insights. Changing this forces a new Log Analytics Storage Insights to be created.
resourceGroupName Changes to this property will trigger replacement. string
The name of the Resource Group where the Log Analytics Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
storageAccountId string
The ID of the Storage Account used by this Log Analytics Storage Insights.
storageAccountKey string
The storage access key to be used to connect to the storage account.
tableNames string[]
The names of the Azure tables that the workspace should read.
workspaceId Changes to this property will trigger replacement. string
The ID of the Log Analytics Workspace within which the Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
blob_container_names Sequence[str]
The names of the blob containers that the workspace should read.
name Changes to this property will trigger replacement. str
The name which should be used for this Log Analytics Storage Insights. Changing this forces a new Log Analytics Storage Insights to be created.
resource_group_name Changes to this property will trigger replacement. str
The name of the Resource Group where the Log Analytics Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
storage_account_id str
The ID of the Storage Account used by this Log Analytics Storage Insights.
storage_account_key str
The storage access key to be used to connect to the storage account.
table_names Sequence[str]
The names of the Azure tables that the workspace should read.
workspace_id Changes to this property will trigger replacement. str
The ID of the Log Analytics Workspace within which the Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
blobContainerNames List<String>
The names of the blob containers that the workspace should read.
name Changes to this property will trigger replacement. String
The name which should be used for this Log Analytics Storage Insights. Changing this forces a new Log Analytics Storage Insights to be created.
resourceGroupName Changes to this property will trigger replacement. String
The name of the Resource Group where the Log Analytics Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.
storageAccountId String
The ID of the Storage Account used by this Log Analytics Storage Insights.
storageAccountKey String
The storage access key to be used to connect to the storage account.
tableNames List<String>
The names of the Azure tables that the workspace should read.
workspaceId Changes to this property will trigger replacement. String
The ID of the Log Analytics Workspace within which the Storage Insights should exist. Changing this forces a new Log Analytics Storage Insights to be created.

Import

Log Analytics Storage Insight Configs can be imported using the resource id, e.g.

$ pulumi import azure:loganalytics/storageInsights:StorageInsights example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.OperationalInsights/workspaces/workspace1/storageInsightConfigs/storageInsight1
Copy

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.