We recommend using Azure Native.
azure.loganalytics.LinkedStorageAccount
Explore with Pulumi AI
Manages a Log Analytics Linked Storage Account.
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: "examplesa",
    resourceGroupName: example.name,
    location: example.location,
    accountTier: "Standard",
    accountReplicationType: "GRS",
});
const exampleAnalyticsWorkspace = new azure.operationalinsights.AnalyticsWorkspace("example", {
    name: "exampleworkspace",
    location: example.location,
    resourceGroupName: example.name,
    sku: "PerGB2018",
});
const exampleLinkedStorageAccount = new azure.loganalytics.LinkedStorageAccount("example", {
    dataSourceType: "CustomLogs",
    resourceGroupName: example.name,
    workspaceResourceId: exampleAnalyticsWorkspace.id,
    storageAccountIds: [exampleAccount.id],
});
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="examplesa",
    resource_group_name=example.name,
    location=example.location,
    account_tier="Standard",
    account_replication_type="GRS")
example_analytics_workspace = azure.operationalinsights.AnalyticsWorkspace("example",
    name="exampleworkspace",
    location=example.location,
    resource_group_name=example.name,
    sku="PerGB2018")
example_linked_storage_account = azure.loganalytics.LinkedStorageAccount("example",
    data_source_type="CustomLogs",
    resource_group_name=example.name,
    workspace_resource_id=example_analytics_workspace.id,
    storage_account_ids=[example_account.id])
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
		}
		exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
			Name:                   pulumi.String("examplesa"),
			ResourceGroupName:      example.Name,
			Location:               example.Location,
			AccountTier:            pulumi.String("Standard"),
			AccountReplicationType: pulumi.String("GRS"),
		})
		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"),
		})
		if err != nil {
			return err
		}
		_, err = loganalytics.NewLinkedStorageAccount(ctx, "example", &loganalytics.LinkedStorageAccountArgs{
			DataSourceType:      pulumi.String("CustomLogs"),
			ResourceGroupName:   example.Name,
			WorkspaceResourceId: exampleAnalyticsWorkspace.ID(),
			StorageAccountIds: pulumi.StringArray{
				exampleAccount.ID(),
			},
		})
		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 = "examplesa",
        ResourceGroupName = example.Name,
        Location = example.Location,
        AccountTier = "Standard",
        AccountReplicationType = "GRS",
    });
    var exampleAnalyticsWorkspace = new Azure.OperationalInsights.AnalyticsWorkspace("example", new()
    {
        Name = "exampleworkspace",
        Location = example.Location,
        ResourceGroupName = example.Name,
        Sku = "PerGB2018",
    });
    var exampleLinkedStorageAccount = new Azure.LogAnalytics.LinkedStorageAccount("example", new()
    {
        DataSourceType = "CustomLogs",
        ResourceGroupName = example.Name,
        WorkspaceResourceId = exampleAnalyticsWorkspace.Id,
        StorageAccountIds = new[]
        {
            exampleAccount.Id,
        },
    });
});
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.operationalinsights.AnalyticsWorkspace;
import com.pulumi.azure.operationalinsights.AnalyticsWorkspaceArgs;
import com.pulumi.azure.loganalytics.LinkedStorageAccount;
import com.pulumi.azure.loganalytics.LinkedStorageAccountArgs;
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("examplesa")
            .resourceGroupName(example.name())
            .location(example.location())
            .accountTier("Standard")
            .accountReplicationType("GRS")
            .build());
        var exampleAnalyticsWorkspace = new AnalyticsWorkspace("exampleAnalyticsWorkspace", AnalyticsWorkspaceArgs.builder()
            .name("exampleworkspace")
            .location(example.location())
            .resourceGroupName(example.name())
            .sku("PerGB2018")
            .build());
        var exampleLinkedStorageAccount = new LinkedStorageAccount("exampleLinkedStorageAccount", LinkedStorageAccountArgs.builder()
            .dataSourceType("CustomLogs")
            .resourceGroupName(example.name())
            .workspaceResourceId(exampleAnalyticsWorkspace.id())
            .storageAccountIds(exampleAccount.id())
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleAccount:
    type: azure:storage:Account
    name: example
    properties:
      name: examplesa
      resourceGroupName: ${example.name}
      location: ${example.location}
      accountTier: Standard
      accountReplicationType: GRS
  exampleAnalyticsWorkspace:
    type: azure:operationalinsights:AnalyticsWorkspace
    name: example
    properties:
      name: exampleworkspace
      location: ${example.location}
      resourceGroupName: ${example.name}
      sku: PerGB2018
  exampleLinkedStorageAccount:
    type: azure:loganalytics:LinkedStorageAccount
    name: example
    properties:
      dataSourceType: CustomLogs
      resourceGroupName: ${example.name}
      workspaceResourceId: ${exampleAnalyticsWorkspace.id}
      storageAccountIds:
        - ${exampleAccount.id}
Create LinkedStorageAccount Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LinkedStorageAccount(name: string, args: LinkedStorageAccountArgs, opts?: CustomResourceOptions);@overload
def LinkedStorageAccount(resource_name: str,
                         args: LinkedStorageAccountArgs,
                         opts: Optional[ResourceOptions] = None)
@overload
def LinkedStorageAccount(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         data_source_type: Optional[str] = None,
                         resource_group_name: Optional[str] = None,
                         storage_account_ids: Optional[Sequence[str]] = None,
                         workspace_resource_id: Optional[str] = None)func NewLinkedStorageAccount(ctx *Context, name string, args LinkedStorageAccountArgs, opts ...ResourceOption) (*LinkedStorageAccount, error)public LinkedStorageAccount(string name, LinkedStorageAccountArgs args, CustomResourceOptions? opts = null)
public LinkedStorageAccount(String name, LinkedStorageAccountArgs args)
public LinkedStorageAccount(String name, LinkedStorageAccountArgs args, CustomResourceOptions options)
type: azure:loganalytics:LinkedStorageAccount
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 LinkedStorageAccountArgs
- 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 LinkedStorageAccountArgs
- 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 LinkedStorageAccountArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LinkedStorageAccountArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LinkedStorageAccountArgs
- 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 linkedStorageAccountResource = new Azure.LogAnalytics.LinkedStorageAccount("linkedStorageAccountResource", new()
{
    DataSourceType = "string",
    ResourceGroupName = "string",
    StorageAccountIds = new[]
    {
        "string",
    },
    WorkspaceResourceId = "string",
});
example, err := loganalytics.NewLinkedStorageAccount(ctx, "linkedStorageAccountResource", &loganalytics.LinkedStorageAccountArgs{
	DataSourceType:    pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	StorageAccountIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	WorkspaceResourceId: pulumi.String("string"),
})
var linkedStorageAccountResource = new LinkedStorageAccount("linkedStorageAccountResource", LinkedStorageAccountArgs.builder()
    .dataSourceType("string")
    .resourceGroupName("string")
    .storageAccountIds("string")
    .workspaceResourceId("string")
    .build());
linked_storage_account_resource = azure.loganalytics.LinkedStorageAccount("linkedStorageAccountResource",
    data_source_type="string",
    resource_group_name="string",
    storage_account_ids=["string"],
    workspace_resource_id="string")
const linkedStorageAccountResource = new azure.loganalytics.LinkedStorageAccount("linkedStorageAccountResource", {
    dataSourceType: "string",
    resourceGroupName: "string",
    storageAccountIds: ["string"],
    workspaceResourceId: "string",
});
type: azure:loganalytics:LinkedStorageAccount
properties:
    dataSourceType: string
    resourceGroupName: string
    storageAccountIds:
        - string
    workspaceResourceId: string
LinkedStorageAccount 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 LinkedStorageAccount resource accepts the following input properties:
- DataSource stringType 
- The data source type which should be used for this Log Analytics Linked Storage Account. Possible values are CustomLogs,AzureWatson,Query,IngestionandAlerts. Changing this forces a new Log Analytics Linked Storage Account to be created.
- ResourceGroup stringName 
- The name of the Resource Group where the Log Analytics Linked Storage Account should exist. Changing this forces a new Log Analytics Linked Storage Account to be created.
- StorageAccount List<string>Ids 
- The storage account resource ids to be linked.
- WorkspaceResource stringId 
- The resource ID of the Log Analytics Workspace. Changing this forces a new Log Analytics Linked Storage Account to be created.
- DataSource stringType 
- The data source type which should be used for this Log Analytics Linked Storage Account. Possible values are CustomLogs,AzureWatson,Query,IngestionandAlerts. Changing this forces a new Log Analytics Linked Storage Account to be created.
- ResourceGroup stringName 
- The name of the Resource Group where the Log Analytics Linked Storage Account should exist. Changing this forces a new Log Analytics Linked Storage Account to be created.
- StorageAccount []stringIds 
- The storage account resource ids to be linked.
- WorkspaceResource stringId 
- The resource ID of the Log Analytics Workspace. Changing this forces a new Log Analytics Linked Storage Account to be created.
- dataSource StringType 
- The data source type which should be used for this Log Analytics Linked Storage Account. Possible values are CustomLogs,AzureWatson,Query,IngestionandAlerts. Changing this forces a new Log Analytics Linked Storage Account to be created.
- resourceGroup StringName 
- The name of the Resource Group where the Log Analytics Linked Storage Account should exist. Changing this forces a new Log Analytics Linked Storage Account to be created.
- storageAccount List<String>Ids 
- The storage account resource ids to be linked.
- workspaceResource StringId 
- The resource ID of the Log Analytics Workspace. Changing this forces a new Log Analytics Linked Storage Account to be created.
- dataSource stringType 
- The data source type which should be used for this Log Analytics Linked Storage Account. Possible values are CustomLogs,AzureWatson,Query,IngestionandAlerts. Changing this forces a new Log Analytics Linked Storage Account to be created.
- resourceGroup stringName 
- The name of the Resource Group where the Log Analytics Linked Storage Account should exist. Changing this forces a new Log Analytics Linked Storage Account to be created.
- storageAccount string[]Ids 
- The storage account resource ids to be linked.
- workspaceResource stringId 
- The resource ID of the Log Analytics Workspace. Changing this forces a new Log Analytics Linked Storage Account to be created.
- data_source_ strtype 
- The data source type which should be used for this Log Analytics Linked Storage Account. Possible values are CustomLogs,AzureWatson,Query,IngestionandAlerts. Changing this forces a new Log Analytics Linked Storage Account to be created.
- resource_group_ strname 
- The name of the Resource Group where the Log Analytics Linked Storage Account should exist. Changing this forces a new Log Analytics Linked Storage Account to be created.
- storage_account_ Sequence[str]ids 
- The storage account resource ids to be linked.
- workspace_resource_ strid 
- The resource ID of the Log Analytics Workspace. Changing this forces a new Log Analytics Linked Storage Account to be created.
- dataSource StringType 
- The data source type which should be used for this Log Analytics Linked Storage Account. Possible values are CustomLogs,AzureWatson,Query,IngestionandAlerts. Changing this forces a new Log Analytics Linked Storage Account to be created.
- resourceGroup StringName 
- The name of the Resource Group where the Log Analytics Linked Storage Account should exist. Changing this forces a new Log Analytics Linked Storage Account to be created.
- storageAccount List<String>Ids 
- The storage account resource ids to be linked.
- workspaceResource StringId 
- The resource ID of the Log Analytics Workspace. Changing this forces a new Log Analytics Linked Storage Account to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the LinkedStorageAccount 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 LinkedStorageAccount Resource
Get an existing LinkedStorageAccount 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?: LinkedStorageAccountState, opts?: CustomResourceOptions): LinkedStorageAccount@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        data_source_type: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        storage_account_ids: Optional[Sequence[str]] = None,
        workspace_resource_id: Optional[str] = None) -> LinkedStorageAccountfunc GetLinkedStorageAccount(ctx *Context, name string, id IDInput, state *LinkedStorageAccountState, opts ...ResourceOption) (*LinkedStorageAccount, error)public static LinkedStorageAccount Get(string name, Input<string> id, LinkedStorageAccountState? state, CustomResourceOptions? opts = null)public static LinkedStorageAccount get(String name, Output<String> id, LinkedStorageAccountState state, CustomResourceOptions options)resources:  _:    type: azure:loganalytics:LinkedStorageAccount    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.
- DataSource stringType 
- The data source type which should be used for this Log Analytics Linked Storage Account. Possible values are CustomLogs,AzureWatson,Query,IngestionandAlerts. Changing this forces a new Log Analytics Linked Storage Account to be created.
- ResourceGroup stringName 
- The name of the Resource Group where the Log Analytics Linked Storage Account should exist. Changing this forces a new Log Analytics Linked Storage Account to be created.
- StorageAccount List<string>Ids 
- The storage account resource ids to be linked.
- WorkspaceResource stringId 
- The resource ID of the Log Analytics Workspace. Changing this forces a new Log Analytics Linked Storage Account to be created.
- DataSource stringType 
- The data source type which should be used for this Log Analytics Linked Storage Account. Possible values are CustomLogs,AzureWatson,Query,IngestionandAlerts. Changing this forces a new Log Analytics Linked Storage Account to be created.
- ResourceGroup stringName 
- The name of the Resource Group where the Log Analytics Linked Storage Account should exist. Changing this forces a new Log Analytics Linked Storage Account to be created.
- StorageAccount []stringIds 
- The storage account resource ids to be linked.
- WorkspaceResource stringId 
- The resource ID of the Log Analytics Workspace. Changing this forces a new Log Analytics Linked Storage Account to be created.
- dataSource StringType 
- The data source type which should be used for this Log Analytics Linked Storage Account. Possible values are CustomLogs,AzureWatson,Query,IngestionandAlerts. Changing this forces a new Log Analytics Linked Storage Account to be created.
- resourceGroup StringName 
- The name of the Resource Group where the Log Analytics Linked Storage Account should exist. Changing this forces a new Log Analytics Linked Storage Account to be created.
- storageAccount List<String>Ids 
- The storage account resource ids to be linked.
- workspaceResource StringId 
- The resource ID of the Log Analytics Workspace. Changing this forces a new Log Analytics Linked Storage Account to be created.
- dataSource stringType 
- The data source type which should be used for this Log Analytics Linked Storage Account. Possible values are CustomLogs,AzureWatson,Query,IngestionandAlerts. Changing this forces a new Log Analytics Linked Storage Account to be created.
- resourceGroup stringName 
- The name of the Resource Group where the Log Analytics Linked Storage Account should exist. Changing this forces a new Log Analytics Linked Storage Account to be created.
- storageAccount string[]Ids 
- The storage account resource ids to be linked.
- workspaceResource stringId 
- The resource ID of the Log Analytics Workspace. Changing this forces a new Log Analytics Linked Storage Account to be created.
- data_source_ strtype 
- The data source type which should be used for this Log Analytics Linked Storage Account. Possible values are CustomLogs,AzureWatson,Query,IngestionandAlerts. Changing this forces a new Log Analytics Linked Storage Account to be created.
- resource_group_ strname 
- The name of the Resource Group where the Log Analytics Linked Storage Account should exist. Changing this forces a new Log Analytics Linked Storage Account to be created.
- storage_account_ Sequence[str]ids 
- The storage account resource ids to be linked.
- workspace_resource_ strid 
- The resource ID of the Log Analytics Workspace. Changing this forces a new Log Analytics Linked Storage Account to be created.
- dataSource StringType 
- The data source type which should be used for this Log Analytics Linked Storage Account. Possible values are CustomLogs,AzureWatson,Query,IngestionandAlerts. Changing this forces a new Log Analytics Linked Storage Account to be created.
- resourceGroup StringName 
- The name of the Resource Group where the Log Analytics Linked Storage Account should exist. Changing this forces a new Log Analytics Linked Storage Account to be created.
- storageAccount List<String>Ids 
- The storage account resource ids to be linked.
- workspaceResource StringId 
- The resource ID of the Log Analytics Workspace. Changing this forces a new Log Analytics Linked Storage Account to be created.
Import
Log Analytics Linked Storage Accounts can be imported using the resource id, e.g.
$ pulumi import azure:loganalytics/linkedStorageAccount:LinkedStorageAccount example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.OperationalInsights/workspaces/workspace1/linkedStorageAccounts/{dataSourceType}
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.