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 Profile. A Log Profile configures how Activity Logs are exported.
NOTE: It’s only possible to configure one Log Profile per Subscription. If you are trying to create more than one Log Profile, an error with
StatusCode=409will occur.
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 exampleAccount = new Azure.Storage.Account("exampleAccount", new Azure.Storage.AccountArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AccountTier = "Standard",
AccountReplicationType = "GRS",
});
var exampleEventHubNamespace = new Azure.EventHub.EventHubNamespace("exampleEventHubNamespace", new Azure.EventHub.EventHubNamespaceArgs
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
Sku = "Standard",
Capacity = 2,
});
var exampleLogProfile = new Azure.Monitoring.LogProfile("exampleLogProfile", new Azure.Monitoring.LogProfileArgs
{
Categories =
{
"Action",
"Delete",
"Write",
},
Locations =
{
"westus",
"global",
},
ServicebusRuleId = exampleEventHubNamespace.Id.Apply(id => $"{id}/authorizationrules/RootManageSharedAccessKey"),
StorageAccountId = exampleAccount.Id,
RetentionPolicy = new Azure.Monitoring.Inputs.LogProfileRetentionPolicyArgs
{
Enabled = true,
Days = 7,
},
});
}
}
package main
import (
"fmt"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/eventhub"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/monitoring"
"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
}
exampleAccount, err := storage.NewAccount(ctx, "exampleAccount", &storage.AccountArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("GRS"),
})
if err != nil {
return err
}
exampleEventHubNamespace, err := eventhub.NewEventHubNamespace(ctx, "exampleEventHubNamespace", &eventhub.EventHubNamespaceArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
Sku: pulumi.String("Standard"),
Capacity: pulumi.Int(2),
})
if err != nil {
return err
}
_, err = monitoring.NewLogProfile(ctx, "exampleLogProfile", &monitoring.LogProfileArgs{
Categories: pulumi.StringArray{
pulumi.String("Action"),
pulumi.String("Delete"),
pulumi.String("Write"),
},
Locations: pulumi.StringArray{
pulumi.String("westus"),
pulumi.String("global"),
},
ServicebusRuleId: exampleEventHubNamespace.ID().ApplyT(func(id string) (string, error) {
return fmt.Sprintf("%v%v", id, "/authorizationrules/RootManageSharedAccessKey"), nil
}).(pulumi.StringOutput),
StorageAccountId: exampleAccount.ID(),
RetentionPolicy: &monitoring.LogProfileRetentionPolicyArgs{
Enabled: pulumi.Bool(true),
Days: pulumi.Int(7),
},
})
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 exampleAccount = new azure.storage.Account("exampleAccount", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
accountTier: "Standard",
accountReplicationType: "GRS",
});
const exampleEventHubNamespace = new azure.eventhub.EventHubNamespace("exampleEventHubNamespace", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
sku: "Standard",
capacity: 2,
});
const exampleLogProfile = new azure.monitoring.LogProfile("exampleLogProfile", {
categories: [
"Action",
"Delete",
"Write",
],
locations: [
"westus",
"global",
],
servicebusRuleId: pulumi.interpolate`${exampleEventHubNamespace.id}/authorizationrules/RootManageSharedAccessKey`,
storageAccountId: exampleAccount.id,
retentionPolicy: {
enabled: true,
days: 7,
},
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_account = azure.storage.Account("exampleAccount",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
account_tier="Standard",
account_replication_type="GRS")
example_event_hub_namespace = azure.eventhub.EventHubNamespace("exampleEventHubNamespace",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
sku="Standard",
capacity=2)
example_log_profile = azure.monitoring.LogProfile("exampleLogProfile",
categories=[
"Action",
"Delete",
"Write",
],
locations=[
"westus",
"global",
],
servicebus_rule_id=example_event_hub_namespace.id.apply(lambda id: f"{id}/authorizationrules/RootManageSharedAccessKey"),
storage_account_id=example_account.id,
retention_policy=azure.monitoring.LogProfileRetentionPolicyArgs(
enabled=True,
days=7,
))
Example coming soon!
Create LogProfile Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new LogProfile(name: string, args: LogProfileArgs, opts?: CustomResourceOptions);@overload
def LogProfile(resource_name: str,
args: LogProfileArgs,
opts: Optional[ResourceOptions] = None)
@overload
def LogProfile(resource_name: str,
opts: Optional[ResourceOptions] = None,
categories: Optional[Sequence[str]] = None,
locations: Optional[Sequence[str]] = None,
retention_policy: Optional[LogProfileRetentionPolicyArgs] = None,
name: Optional[str] = None,
servicebus_rule_id: Optional[str] = None,
storage_account_id: Optional[str] = None)func NewLogProfile(ctx *Context, name string, args LogProfileArgs, opts ...ResourceOption) (*LogProfile, error)public LogProfile(string name, LogProfileArgs args, CustomResourceOptions? opts = null)
public LogProfile(String name, LogProfileArgs args)
public LogProfile(String name, LogProfileArgs args, CustomResourceOptions options)
type: azure:monitoring:LogProfile
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 LogProfileArgs
- 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 LogProfileArgs
- 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 LogProfileArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args LogProfileArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args LogProfileArgs
- 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 logProfileResource = new Azure.Monitoring.LogProfile("logProfileResource", new()
{
Categories = new[]
{
"string",
},
Locations = new[]
{
"string",
},
RetentionPolicy = new Azure.Monitoring.Inputs.LogProfileRetentionPolicyArgs
{
Enabled = false,
Days = 0,
},
Name = "string",
ServicebusRuleId = "string",
StorageAccountId = "string",
});
example, err := monitoring.NewLogProfile(ctx, "logProfileResource", &monitoring.LogProfileArgs{
Categories: pulumi.StringArray{
pulumi.String("string"),
},
Locations: pulumi.StringArray{
pulumi.String("string"),
},
RetentionPolicy: &monitoring.LogProfileRetentionPolicyArgs{
Enabled: pulumi.Bool(false),
Days: pulumi.Int(0),
},
Name: pulumi.String("string"),
ServicebusRuleId: pulumi.String("string"),
StorageAccountId: pulumi.String("string"),
})
var logProfileResource = new LogProfile("logProfileResource", LogProfileArgs.builder()
.categories("string")
.locations("string")
.retentionPolicy(LogProfileRetentionPolicyArgs.builder()
.enabled(false)
.days(0)
.build())
.name("string")
.servicebusRuleId("string")
.storageAccountId("string")
.build());
log_profile_resource = azure.monitoring.LogProfile("logProfileResource",
categories=["string"],
locations=["string"],
retention_policy={
"enabled": False,
"days": 0,
},
name="string",
servicebus_rule_id="string",
storage_account_id="string")
const logProfileResource = new azure.monitoring.LogProfile("logProfileResource", {
categories: ["string"],
locations: ["string"],
retentionPolicy: {
enabled: false,
days: 0,
},
name: "string",
servicebusRuleId: "string",
storageAccountId: "string",
});
type: azure:monitoring:LogProfile
properties:
categories:
- string
locations:
- string
name: string
retentionPolicy:
days: 0
enabled: false
servicebusRuleId: string
storageAccountId: string
LogProfile 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 LogProfile resource accepts the following input properties:
- Categories List<string>
- List of categories of the logs.
- Locations List<string>
- List of regions for which Activity Log events are stored or streamed.
- Retention
Policy LogProfile Retention Policy - A
retention_policyblock as documented below. A retention policy for how long Activity Logs are retained in the storage account. - Name string
- The name of the Log Profile. Changing this forces a new resource to be created.
- Servicebus
Rule stringId - The service bus (or event hub) rule ID of the service bus (or event hub) namespace in which the Activity Log is streamed to. At least one of
storage_account_idorservicebus_rule_idmust be set. - Storage
Account stringId - The resource ID of the storage account in which the Activity Log is stored. At least one of
storage_account_idorservicebus_rule_idmust be set.
- Categories []string
- List of categories of the logs.
- Locations []string
- List of regions for which Activity Log events are stored or streamed.
- Retention
Policy LogProfile Retention Policy Args - A
retention_policyblock as documented below. A retention policy for how long Activity Logs are retained in the storage account. - Name string
- The name of the Log Profile. Changing this forces a new resource to be created.
- Servicebus
Rule stringId - The service bus (or event hub) rule ID of the service bus (or event hub) namespace in which the Activity Log is streamed to. At least one of
storage_account_idorservicebus_rule_idmust be set. - Storage
Account stringId - The resource ID of the storage account in which the Activity Log is stored. At least one of
storage_account_idorservicebus_rule_idmust be set.
- categories List<String>
- List of categories of the logs.
- locations List<String>
- List of regions for which Activity Log events are stored or streamed.
- retention
Policy LogProfile Retention Policy - A
retention_policyblock as documented below. A retention policy for how long Activity Logs are retained in the storage account. - name String
- The name of the Log Profile. Changing this forces a new resource to be created.
- servicebus
Rule StringId - The service bus (or event hub) rule ID of the service bus (or event hub) namespace in which the Activity Log is streamed to. At least one of
storage_account_idorservicebus_rule_idmust be set. - storage
Account StringId - The resource ID of the storage account in which the Activity Log is stored. At least one of
storage_account_idorservicebus_rule_idmust be set.
- categories string[]
- List of categories of the logs.
- locations string[]
- List of regions for which Activity Log events are stored or streamed.
- retention
Policy LogProfile Retention Policy - A
retention_policyblock as documented below. A retention policy for how long Activity Logs are retained in the storage account. - name string
- The name of the Log Profile. Changing this forces a new resource to be created.
- servicebus
Rule stringId - The service bus (or event hub) rule ID of the service bus (or event hub) namespace in which the Activity Log is streamed to. At least one of
storage_account_idorservicebus_rule_idmust be set. - storage
Account stringId - The resource ID of the storage account in which the Activity Log is stored. At least one of
storage_account_idorservicebus_rule_idmust be set.
- categories Sequence[str]
- List of categories of the logs.
- locations Sequence[str]
- List of regions for which Activity Log events are stored or streamed.
- retention_
policy LogProfile Retention Policy Args - A
retention_policyblock as documented below. A retention policy for how long Activity Logs are retained in the storage account. - name str
- The name of the Log Profile. Changing this forces a new resource to be created.
- servicebus_
rule_ strid - The service bus (or event hub) rule ID of the service bus (or event hub) namespace in which the Activity Log is streamed to. At least one of
storage_account_idorservicebus_rule_idmust be set. - storage_
account_ strid - The resource ID of the storage account in which the Activity Log is stored. At least one of
storage_account_idorservicebus_rule_idmust be set.
- categories List<String>
- List of categories of the logs.
- locations List<String>
- List of regions for which Activity Log events are stored or streamed.
- retention
Policy Property Map - A
retention_policyblock as documented below. A retention policy for how long Activity Logs are retained in the storage account. - name String
- The name of the Log Profile. Changing this forces a new resource to be created.
- servicebus
Rule StringId - The service bus (or event hub) rule ID of the service bus (or event hub) namespace in which the Activity Log is streamed to. At least one of
storage_account_idorservicebus_rule_idmust be set. - storage
Account StringId - The resource ID of the storage account in which the Activity Log is stored. At least one of
storage_account_idorservicebus_rule_idmust be set.
Outputs
All input properties are implicitly available as output properties. Additionally, the LogProfile 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 LogProfile Resource
Get an existing LogProfile 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?: LogProfileState, opts?: CustomResourceOptions): LogProfile@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
categories: Optional[Sequence[str]] = None,
locations: Optional[Sequence[str]] = None,
name: Optional[str] = None,
retention_policy: Optional[LogProfileRetentionPolicyArgs] = None,
servicebus_rule_id: Optional[str] = None,
storage_account_id: Optional[str] = None) -> LogProfilefunc GetLogProfile(ctx *Context, name string, id IDInput, state *LogProfileState, opts ...ResourceOption) (*LogProfile, error)public static LogProfile Get(string name, Input<string> id, LogProfileState? state, CustomResourceOptions? opts = null)public static LogProfile get(String name, Output<String> id, LogProfileState state, CustomResourceOptions options)resources: _: type: azure:monitoring:LogProfile 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.
- Categories List<string>
- List of categories of the logs.
- Locations List<string>
- List of regions for which Activity Log events are stored or streamed.
- Name string
- The name of the Log Profile. Changing this forces a new resource to be created.
- Retention
Policy LogProfile Retention Policy - A
retention_policyblock as documented below. A retention policy for how long Activity Logs are retained in the storage account. - Servicebus
Rule stringId - The service bus (or event hub) rule ID of the service bus (or event hub) namespace in which the Activity Log is streamed to. At least one of
storage_account_idorservicebus_rule_idmust be set. - Storage
Account stringId - The resource ID of the storage account in which the Activity Log is stored. At least one of
storage_account_idorservicebus_rule_idmust be set.
- Categories []string
- List of categories of the logs.
- Locations []string
- List of regions for which Activity Log events are stored or streamed.
- Name string
- The name of the Log Profile. Changing this forces a new resource to be created.
- Retention
Policy LogProfile Retention Policy Args - A
retention_policyblock as documented below. A retention policy for how long Activity Logs are retained in the storage account. - Servicebus
Rule stringId - The service bus (or event hub) rule ID of the service bus (or event hub) namespace in which the Activity Log is streamed to. At least one of
storage_account_idorservicebus_rule_idmust be set. - Storage
Account stringId - The resource ID of the storage account in which the Activity Log is stored. At least one of
storage_account_idorservicebus_rule_idmust be set.
- categories List<String>
- List of categories of the logs.
- locations List<String>
- List of regions for which Activity Log events are stored or streamed.
- name String
- The name of the Log Profile. Changing this forces a new resource to be created.
- retention
Policy LogProfile Retention Policy - A
retention_policyblock as documented below. A retention policy for how long Activity Logs are retained in the storage account. - servicebus
Rule StringId - The service bus (or event hub) rule ID of the service bus (or event hub) namespace in which the Activity Log is streamed to. At least one of
storage_account_idorservicebus_rule_idmust be set. - storage
Account StringId - The resource ID of the storage account in which the Activity Log is stored. At least one of
storage_account_idorservicebus_rule_idmust be set.
- categories string[]
- List of categories of the logs.
- locations string[]
- List of regions for which Activity Log events are stored or streamed.
- name string
- The name of the Log Profile. Changing this forces a new resource to be created.
- retention
Policy LogProfile Retention Policy - A
retention_policyblock as documented below. A retention policy for how long Activity Logs are retained in the storage account. - servicebus
Rule stringId - The service bus (or event hub) rule ID of the service bus (or event hub) namespace in which the Activity Log is streamed to. At least one of
storage_account_idorservicebus_rule_idmust be set. - storage
Account stringId - The resource ID of the storage account in which the Activity Log is stored. At least one of
storage_account_idorservicebus_rule_idmust be set.
- categories Sequence[str]
- List of categories of the logs.
- locations Sequence[str]
- List of regions for which Activity Log events are stored or streamed.
- name str
- The name of the Log Profile. Changing this forces a new resource to be created.
- retention_
policy LogProfile Retention Policy Args - A
retention_policyblock as documented below. A retention policy for how long Activity Logs are retained in the storage account. - servicebus_
rule_ strid - The service bus (or event hub) rule ID of the service bus (or event hub) namespace in which the Activity Log is streamed to. At least one of
storage_account_idorservicebus_rule_idmust be set. - storage_
account_ strid - The resource ID of the storage account in which the Activity Log is stored. At least one of
storage_account_idorservicebus_rule_idmust be set.
- categories List<String>
- List of categories of the logs.
- locations List<String>
- List of regions for which Activity Log events are stored or streamed.
- name String
- The name of the Log Profile. Changing this forces a new resource to be created.
- retention
Policy Property Map - A
retention_policyblock as documented below. A retention policy for how long Activity Logs are retained in the storage account. - servicebus
Rule StringId - The service bus (or event hub) rule ID of the service bus (or event hub) namespace in which the Activity Log is streamed to. At least one of
storage_account_idorservicebus_rule_idmust be set. - storage
Account StringId - The resource ID of the storage account in which the Activity Log is stored. At least one of
storage_account_idorservicebus_rule_idmust be set.
Supporting Types
LogProfileRetentionPolicy, LogProfileRetentionPolicyArgs
Import
A Log Profile can be imported using the resource id, e.g.
$ pulumi import azure:monitoring/logProfile:LogProfile example /subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Insights/logProfiles/test
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
