We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi
Manages a Log Analytics Storage Insights resource.
Example Usage
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleAnalyticsWorkspace = new Azure.OperationalInsights.AnalyticsWorkspace("exampleAnalyticsWorkspace", new Azure.OperationalInsights.AnalyticsWorkspaceArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
Sku = "PerGB2018",
RetentionInDays = 30,
});
var exampleAccount = new Azure.Storage.Account("exampleAccount", new Azure.Storage.AccountArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AccountTier = "Standard",
AccountReplicationType = "LRS",
});
var exampleStorageInsights = new Azure.LogAnalytics.StorageInsights("exampleStorageInsights", new Azure.LogAnalytics.StorageInsightsArgs
{
ResourceGroupName = exampleResourceGroup.Name,
WorkspaceId = exampleAnalyticsWorkspace.Id,
StorageAccountId = exampleAccount.Id,
StorageAccountKey = exampleAccount.PrimaryAccessKey,
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/loganalytics"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/operationalinsights"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/storage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleAnalyticsWorkspace, err := operationalinsights.NewAnalyticsWorkspace(ctx, "exampleAnalyticsWorkspace", &operationalinsights.AnalyticsWorkspaceArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
Sku: pulumi.String("PerGB2018"),
RetentionInDays: pulumi.Int(30),
})
if err != nil {
return err
}
exampleAccount, err := storage.NewAccount(ctx, "exampleAccount", &storage.AccountArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("LRS"),
})
if err != nil {
return err
}
_, err = loganalytics.NewStorageInsights(ctx, "exampleStorageInsights", &loganalytics.StorageInsightsArgs{
ResourceGroupName: exampleResourceGroup.Name,
WorkspaceId: exampleAnalyticsWorkspace.ID(),
StorageAccountId: exampleAccount.ID(),
StorageAccountKey: exampleAccount.PrimaryAccessKey,
})
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("exampleAnalyticsWorkspace", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
sku: "PerGB2018",
retentionInDays: 30,
});
const exampleAccount = new azure.storage.Account("exampleAccount", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
accountTier: "Standard",
accountReplicationType: "LRS",
});
const exampleStorageInsights = new azure.loganalytics.StorageInsights("exampleStorageInsights", {
resourceGroupName: exampleResourceGroup.name,
workspaceId: exampleAnalyticsWorkspace.id,
storageAccountId: exampleAccount.id,
storageAccountKey: exampleAccount.primaryAccessKey,
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_analytics_workspace = azure.operationalinsights.AnalyticsWorkspace("exampleAnalyticsWorkspace",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
sku="PerGB2018",
retention_in_days=30)
example_account = azure.storage.Account("exampleAccount",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
account_tier="Standard",
account_replication_type="LRS")
example_storage_insights = azure.loganalytics.StorageInsights("exampleStorageInsights",
resource_group_name=example_resource_group.name,
workspace_id=example_analytics_workspace.id,
storage_account_id=example_account.id,
storage_account_key=example_account.primary_access_key)
Example coming soon!
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,
tags: Optional[Mapping[str, 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 string
- The unique name of the resource.
- args StorageInsightsArgs
- 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 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 string
- The unique name of the resource.
- args StorageInsightsArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args StorageInsightsArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
},
Tags =
{
{ "string", "string" },
},
});
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"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var storageInsightsResource = new StorageInsights("storageInsightsResource", StorageInsightsArgs.builder()
.resourceGroupName("string")
.storageAccountId("string")
.storageAccountKey("string")
.workspaceId("string")
.blobContainerNames("string")
.name("string")
.tableNames("string")
.tags(Map.of("string", "string"))
.build());
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"],
tags={
"string": "string",
})
const storageInsightsResource = new azure.loganalytics.StorageInsights("storageInsightsResource", {
resourceGroupName: "string",
storageAccountId: "string",
storageAccountKey: "string",
workspaceId: "string",
blobContainerNames: ["string"],
name: "string",
tableNames: ["string"],
tags: {
string: "string",
},
});
type: azure:loganalytics:StorageInsights
properties:
blobContainerNames:
- string
name: string
resourceGroupName: string
storageAccountId: string
storageAccountKey: string
tableNames:
- string
tags:
string: string
workspaceId: string
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:
- Resource
Group stringName - 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 stringId - The ID of the Storage Account used by this Log Analytics Storage Insights.
- Storage
Account stringKey - The storage access key to be used to connect to the storage account.
- Workspace
Id 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 List<string>Names - The names of the blob containers that the workspace should read.
- Name 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.
- Table
Names List<string> - The names of the Azure tables that the workspace should read.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Log Analytics Storage Insights.
- Resource
Group stringName - 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 stringId - The ID of the Storage Account used by this Log Analytics Storage Insights.
- Storage
Account stringKey - The storage access key to be used to connect to the storage account.
- Workspace
Id 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 []stringNames - The names of the blob containers that the workspace should read.
- Name 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.
- Table
Names []string - The names of the Azure tables that the workspace should read.
- map[string]string
- A mapping of tags which should be assigned to the Log Analytics Storage Insights.
- resource
Group StringName - 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 StringId - The ID of the Storage Account used by this Log Analytics Storage Insights.
- storage
Account StringKey - The storage access key to be used to connect to the storage account.
- workspace
Id 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 List<String>Names - The names of the blob containers that the workspace should read.
- name 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.
- table
Names List<String> - The names of the Azure tables that the workspace should read.
- Map<String,String>
- A mapping of tags which should be assigned to the Log Analytics Storage Insights.
- resource
Group stringName - 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 stringId - The ID of the Storage Account used by this Log Analytics Storage Insights.
- storage
Account stringKey - The storage access key to be used to connect to the storage account.
- workspace
Id 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 string[]Names - The names of the blob containers that the workspace should read.
- name 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.
- table
Names string[] - The names of the Azure tables that the workspace should read.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Log Analytics Storage Insights.
- resource_
group_ strname - 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_ strid - The ID of the Storage Account used by this Log Analytics Storage Insights.
- storage_
account_ strkey - The storage access key to be used to connect to the storage account.
- workspace_
id 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_ Sequence[str]names - The names of the blob containers that the workspace should read.
- name 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.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Log Analytics Storage Insights.
- resource
Group StringName - 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 StringId - The ID of the Storage Account used by this Log Analytics Storage Insights.
- storage
Account StringKey - The storage access key to be used to connect to the storage account.
- workspace
Id 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 List<String>Names - The names of the blob containers that the workspace should read.
- name 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.
- table
Names List<String> - The names of the Azure tables that the workspace should read.
- Map<String>
- A mapping of tags which should be assigned to the Log Analytics Storage Insights.
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,
tags: Optional[Mapping[str, str]] = None,
workspace_id: Optional[str] = None) -> StorageInsightsfunc 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
- 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.
- Blob
Container List<string>Names - The names of the blob containers that the workspace should read.
- Name 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.
- Resource
Group stringName - 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 stringId - The ID of the Storage Account used by this Log Analytics Storage Insights.
- Storage
Account stringKey - The storage access key to be used to connect to the storage account.
- Table
Names List<string> - The names of the Azure tables that the workspace should read.
- Dictionary<string, string>
- A mapping of tags which should be assigned to the Log Analytics Storage Insights.
- Workspace
Id 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 []stringNames - The names of the blob containers that the workspace should read.
- Name 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.
- Resource
Group stringName - 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 stringId - The ID of the Storage Account used by this Log Analytics Storage Insights.
- Storage
Account stringKey - The storage access key to be used to connect to the storage account.
- Table
Names []string - The names of the Azure tables that the workspace should read.
- map[string]string
- A mapping of tags which should be assigned to the Log Analytics Storage Insights.
- Workspace
Id 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 List<String>Names - The names of the blob containers that the workspace should read.
- name 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.
- resource
Group StringName - 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 StringId - The ID of the Storage Account used by this Log Analytics Storage Insights.
- storage
Account StringKey - The storage access key to be used to connect to the storage account.
- table
Names List<String> - The names of the Azure tables that the workspace should read.
- Map<String,String>
- A mapping of tags which should be assigned to the Log Analytics Storage Insights.
- workspace
Id 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 string[]Names - The names of the blob containers that the workspace should read.
- name 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.
- resource
Group stringName - 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 stringId - The ID of the Storage Account used by this Log Analytics Storage Insights.
- storage
Account stringKey - The storage access key to be used to connect to the storage account.
- table
Names string[] - The names of the Azure tables that the workspace should read.
- {[key: string]: string}
- A mapping of tags which should be assigned to the Log Analytics Storage Insights.
- workspace
Id 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_ Sequence[str]names - The names of the blob containers that the workspace should read.
- name 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_ strname - 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_ strid - The ID of the Storage Account used by this Log Analytics Storage Insights.
- storage_
account_ strkey - 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.
- Mapping[str, str]
- A mapping of tags which should be assigned to the Log Analytics Storage Insights.
- workspace_
id 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 List<String>Names - The names of the blob containers that the workspace should read.
- name 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.
- resource
Group StringName - 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 StringId - The ID of the Storage Account used by this Log Analytics Storage Insights.
- storage
Account StringKey - The storage access key to be used to connect to the storage account.
- table
Names List<String> - The names of the Azure tables that the workspace should read.
- Map<String>
- A mapping of tags which should be assigned to the Log Analytics Storage Insights.
- workspace
Id 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
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
azurermTerraform Provider.
We recommend using Azure Native.
published on Monday, Mar 9, 2026 by Pulumi