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 Ms Sql Server Extended Auditing Policy.
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 exampleServer = new Azure.MSSql.Server("exampleServer", new Azure.MSSql.ServerArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
Version = "12.0",
AdministratorLogin = "missadministrator",
AdministratorLoginPassword = "AdminPassword123!",
});
var exampleAccount = new Azure.Storage.Account("exampleAccount", new Azure.Storage.AccountArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AccountTier = "Standard",
AccountReplicationType = "LRS",
});
var exampleServerExtendedAuditingPolicy = new Azure.MSSql.ServerExtendedAuditingPolicy("exampleServerExtendedAuditingPolicy", new Azure.MSSql.ServerExtendedAuditingPolicyArgs
{
ServerId = exampleServer.Id,
StorageEndpoint = exampleAccount.PrimaryBlobEndpoint,
StorageAccountAccessKey = exampleAccount.PrimaryAccessKey,
StorageAccountAccessKeyIsSecondary = false,
RetentionInDays = 6,
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/mssql"
"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
}
exampleServer, err := mssql.NewServer(ctx, "exampleServer", &mssql.ServerArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
Version: pulumi.String("12.0"),
AdministratorLogin: pulumi.String("missadministrator"),
AdministratorLoginPassword: pulumi.String("AdminPassword123!"),
})
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 = mssql.NewServerExtendedAuditingPolicy(ctx, "exampleServerExtendedAuditingPolicy", &mssql.ServerExtendedAuditingPolicyArgs{
ServerId: exampleServer.ID(),
StorageEndpoint: exampleAccount.PrimaryBlobEndpoint,
StorageAccountAccessKey: exampleAccount.PrimaryAccessKey,
StorageAccountAccessKeyIsSecondary: pulumi.Bool(false),
RetentionInDays: pulumi.Int(6),
})
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 exampleServer = new azure.mssql.Server("exampleServer", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
version: "12.0",
administratorLogin: "missadministrator",
administratorLoginPassword: "AdminPassword123!",
});
const exampleAccount = new azure.storage.Account("exampleAccount", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
accountTier: "Standard",
accountReplicationType: "LRS",
});
const exampleServerExtendedAuditingPolicy = new azure.mssql.ServerExtendedAuditingPolicy("exampleServerExtendedAuditingPolicy", {
serverId: exampleServer.id,
storageEndpoint: exampleAccount.primaryBlobEndpoint,
storageAccountAccessKey: exampleAccount.primaryAccessKey,
storageAccountAccessKeyIsSecondary: false,
retentionInDays: 6,
});
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_server = azure.mssql.Server("exampleServer",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
version="12.0",
administrator_login="missadministrator",
administrator_login_password="AdminPassword123!")
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_server_extended_auditing_policy = azure.mssql.ServerExtendedAuditingPolicy("exampleServerExtendedAuditingPolicy",
server_id=example_server.id,
storage_endpoint=example_account.primary_blob_endpoint,
storage_account_access_key=example_account.primary_access_key,
storage_account_access_key_is_secondary=False,
retention_in_days=6)
Example coming soon!
With Storage Account Behind VNet And Firewall
using Pulumi;
using Azure = Pulumi.Azure;
class MyStack : Stack
{
public MyStack()
{
var primary = Output.Create(Azure.Core.GetSubscription.InvokeAsync());
var exampleClientConfig = Output.Create(Azure.Core.GetClientConfig.InvokeAsync());
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
{
Location = "West Europe",
});
var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("exampleVirtualNetwork", new Azure.Network.VirtualNetworkArgs
{
AddressSpaces =
{
"10.0.0.0/16",
},
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
});
var exampleSubnet = new Azure.Network.Subnet("exampleSubnet", new Azure.Network.SubnetArgs
{
ResourceGroupName = exampleResourceGroup.Name,
VirtualNetworkName = exampleVirtualNetwork.Name,
AddressPrefixes =
{
"10.0.2.0/24",
},
ServiceEndpoints =
{
"Microsoft.Sql",
"Microsoft.Storage",
},
EnforcePrivateLinkEndpointNetworkPolicies = true,
});
var exampleServer = new Azure.MSSql.Server("exampleServer", new Azure.MSSql.ServerArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
Version = "12.0",
AdministratorLogin = "missadministrator",
AdministratorLoginPassword = "AdminPassword123!",
MinimumTlsVersion = "1.2",
Identity = new Azure.MSSql.Inputs.ServerIdentityArgs
{
Type = "SystemAssigned",
},
});
var exampleAssignment = new Azure.Authorization.Assignment("exampleAssignment", new Azure.Authorization.AssignmentArgs
{
Scope = primary.Apply(primary => primary.Id),
RoleDefinitionName = "Storage Blob Data Contributor",
PrincipalId = exampleServer.Identity.Apply(identity => identity?.PrincipalId),
});
var sqlvnetrule = new Azure.Sql.VirtualNetworkRule("sqlvnetrule", new Azure.Sql.VirtualNetworkRuleArgs
{
ResourceGroupName = exampleResourceGroup.Name,
ServerName = exampleServer.Name,
SubnetId = exampleSubnet.Id,
});
var exampleFirewallRule = new Azure.Sql.FirewallRule("exampleFirewallRule", new Azure.Sql.FirewallRuleArgs
{
ResourceGroupName = exampleResourceGroup.Name,
ServerName = exampleServer.Name,
StartIpAddress = "0.0.0.0",
EndIpAddress = "0.0.0.0",
});
var exampleAccount = new Azure.Storage.Account("exampleAccount", new Azure.Storage.AccountArgs
{
ResourceGroupName = exampleResourceGroup.Name,
Location = exampleResourceGroup.Location,
AccountTier = "Standard",
AccountReplicationType = "LRS",
AccountKind = "StorageV2",
AllowBlobPublicAccess = false,
NetworkRules = new Azure.Storage.Inputs.AccountNetworkRulesArgs
{
DefaultAction = "Deny",
IpRules =
{
"127.0.0.1",
},
VirtualNetworkSubnetIds =
{
exampleSubnet.Id,
},
Bypasses =
{
"AzureServices",
},
},
Identity = new Azure.Storage.Inputs.AccountIdentityArgs
{
Type = "SystemAssigned",
},
});
var exampleServerExtendedAuditingPolicy = new Azure.MSSql.ServerExtendedAuditingPolicy("exampleServerExtendedAuditingPolicy", new Azure.MSSql.ServerExtendedAuditingPolicyArgs
{
StorageEndpoint = exampleAccount.PrimaryBlobEndpoint,
ServerId = exampleServer.Id,
RetentionInDays = 6,
LogMonitoringEnabled = false,
StorageAccountSubscriptionId = azurerm_subscription.Primary.Subscription_id,
}, new CustomResourceOptions
{
DependsOn =
{
exampleAssignment,
exampleAccount,
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/authorization"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/mssql"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/network"
"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/sql"
"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 {
primary, err := core.LookupSubscription(ctx, nil, nil)
if err != nil {
return err
}
_, err = core.GetClientConfig(ctx, nil, nil)
if err != nil {
return err
}
exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleVirtualNetwork, err := network.NewVirtualNetwork(ctx, "exampleVirtualNetwork", &network.VirtualNetworkArgs{
AddressSpaces: pulumi.StringArray{
pulumi.String("10.0.0.0/16"),
},
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
})
if err != nil {
return err
}
exampleSubnet, err := network.NewSubnet(ctx, "exampleSubnet", &network.SubnetArgs{
ResourceGroupName: exampleResourceGroup.Name,
VirtualNetworkName: exampleVirtualNetwork.Name,
AddressPrefixes: pulumi.StringArray{
pulumi.String("10.0.2.0/24"),
},
ServiceEndpoints: pulumi.StringArray{
pulumi.String("Microsoft.Sql"),
pulumi.String("Microsoft.Storage"),
},
EnforcePrivateLinkEndpointNetworkPolicies: pulumi.Bool(true),
})
if err != nil {
return err
}
exampleServer, err := mssql.NewServer(ctx, "exampleServer", &mssql.ServerArgs{
ResourceGroupName: exampleResourceGroup.Name,
Location: exampleResourceGroup.Location,
Version: pulumi.String("12.0"),
AdministratorLogin: pulumi.String("missadministrator"),
AdministratorLoginPassword: pulumi.String("AdminPassword123!"),
MinimumTlsVersion: pulumi.String("1.2"),
Identity: &mssql.ServerIdentityArgs{
Type: pulumi.String("SystemAssigned"),
},
})
if err != nil {
return err
}
exampleAssignment, err := authorization.NewAssignment(ctx, "exampleAssignment", &authorization.AssignmentArgs{
Scope: pulumi.String(primary.Id),
RoleDefinitionName: pulumi.String("Storage Blob Data Contributor"),
PrincipalId: exampleServer.Identity.ApplyT(func(identity mssql.ServerIdentity) (string, error) {
return identity.PrincipalId, nil
}).(pulumi.StringOutput),
})
if err != nil {
return err
}
_, err = sql.NewVirtualNetworkRule(ctx, "sqlvnetrule", &sql.VirtualNetworkRuleArgs{
ResourceGroupName: exampleResourceGroup.Name,
ServerName: exampleServer.Name,
SubnetId: exampleSubnet.ID(),
})
if err != nil {
return err
}
_, err = sql.NewFirewallRule(ctx, "exampleFirewallRule", &sql.FirewallRuleArgs{
ResourceGroupName: exampleResourceGroup.Name,
ServerName: exampleServer.Name,
StartIpAddress: pulumi.String("0.0.0.0"),
EndIpAddress: pulumi.String("0.0.0.0"),
})
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"),
AccountKind: pulumi.String("StorageV2"),
AllowBlobPublicAccess: pulumi.Bool(false),
NetworkRules: &storage.AccountNetworkRulesArgs{
DefaultAction: pulumi.String("Deny"),
IpRules: pulumi.StringArray{
pulumi.String("127.0.0.1"),
},
VirtualNetworkSubnetIds: pulumi.StringArray{
exampleSubnet.ID(),
},
Bypasses: pulumi.StringArray{
pulumi.String("AzureServices"),
},
},
Identity: &storage.AccountIdentityArgs{
Type: pulumi.String("SystemAssigned"),
},
})
if err != nil {
return err
}
_, err = mssql.NewServerExtendedAuditingPolicy(ctx, "exampleServerExtendedAuditingPolicy", &mssql.ServerExtendedAuditingPolicyArgs{
StorageEndpoint: exampleAccount.PrimaryBlobEndpoint,
ServerId: exampleServer.ID(),
RetentionInDays: pulumi.Int(6),
LogMonitoringEnabled: pulumi.Bool(false),
StorageAccountSubscriptionId: pulumi.Any(azurerm_subscription.Primary.Subscription_id),
}, pulumi.DependsOn([]pulumi.Resource{
exampleAssignment,
exampleAccount,
}))
if err != nil {
return err
}
return nil
})
}
Example coming soon!
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const primary = azure.core.getSubscription({});
const exampleClientConfig = azure.core.getClientConfig({});
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleVirtualNetwork = new azure.network.VirtualNetwork("exampleVirtualNetwork", {
addressSpaces: ["10.0.0.0/16"],
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
});
const exampleSubnet = new azure.network.Subnet("exampleSubnet", {
resourceGroupName: exampleResourceGroup.name,
virtualNetworkName: exampleVirtualNetwork.name,
addressPrefixes: ["10.0.2.0/24"],
serviceEndpoints: [
"Microsoft.Sql",
"Microsoft.Storage",
],
enforcePrivateLinkEndpointNetworkPolicies: true,
});
const exampleServer = new azure.mssql.Server("exampleServer", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
version: "12.0",
administratorLogin: "missadministrator",
administratorLoginPassword: "AdminPassword123!",
minimumTlsVersion: "1.2",
identity: {
type: "SystemAssigned",
},
});
const exampleAssignment = new azure.authorization.Assignment("exampleAssignment", {
scope: primary.then(primary => primary.id),
roleDefinitionName: "Storage Blob Data Contributor",
principalId: exampleServer.identity.apply(identity => identity?.principalId),
});
const sqlvnetrule = new azure.sql.VirtualNetworkRule("sqlvnetrule", {
resourceGroupName: exampleResourceGroup.name,
serverName: exampleServer.name,
subnetId: exampleSubnet.id,
});
const exampleFirewallRule = new azure.sql.FirewallRule("exampleFirewallRule", {
resourceGroupName: exampleResourceGroup.name,
serverName: exampleServer.name,
startIpAddress: "0.0.0.0",
endIpAddress: "0.0.0.0",
});
const exampleAccount = new azure.storage.Account("exampleAccount", {
resourceGroupName: exampleResourceGroup.name,
location: exampleResourceGroup.location,
accountTier: "Standard",
accountReplicationType: "LRS",
accountKind: "StorageV2",
allowBlobPublicAccess: false,
networkRules: {
defaultAction: "Deny",
ipRules: ["127.0.0.1"],
virtualNetworkSubnetIds: [exampleSubnet.id],
bypasses: ["AzureServices"],
},
identity: {
type: "SystemAssigned",
},
});
const exampleServerExtendedAuditingPolicy = new azure.mssql.ServerExtendedAuditingPolicy("exampleServerExtendedAuditingPolicy", {
storageEndpoint: exampleAccount.primaryBlobEndpoint,
serverId: exampleServer.id,
retentionInDays: 6,
logMonitoringEnabled: false,
storageAccountSubscriptionId: azurerm_subscription.primary.subscription_id,
}, {
dependsOn: [
exampleAssignment,
exampleAccount,
],
});
import pulumi
import pulumi_azure as azure
primary = azure.core.get_subscription()
example_client_config = azure.core.get_client_config()
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_virtual_network = azure.network.VirtualNetwork("exampleVirtualNetwork",
address_spaces=["10.0.0.0/16"],
location=example_resource_group.location,
resource_group_name=example_resource_group.name)
example_subnet = azure.network.Subnet("exampleSubnet",
resource_group_name=example_resource_group.name,
virtual_network_name=example_virtual_network.name,
address_prefixes=["10.0.2.0/24"],
service_endpoints=[
"Microsoft.Sql",
"Microsoft.Storage",
],
enforce_private_link_endpoint_network_policies=True)
example_server = azure.mssql.Server("exampleServer",
resource_group_name=example_resource_group.name,
location=example_resource_group.location,
version="12.0",
administrator_login="missadministrator",
administrator_login_password="AdminPassword123!",
minimum_tls_version="1.2",
identity=azure.mssql.ServerIdentityArgs(
type="SystemAssigned",
))
example_assignment = azure.authorization.Assignment("exampleAssignment",
scope=primary.id,
role_definition_name="Storage Blob Data Contributor",
principal_id=example_server.identity.principal_id)
sqlvnetrule = azure.sql.VirtualNetworkRule("sqlvnetrule",
resource_group_name=example_resource_group.name,
server_name=example_server.name,
subnet_id=example_subnet.id)
example_firewall_rule = azure.sql.FirewallRule("exampleFirewallRule",
resource_group_name=example_resource_group.name,
server_name=example_server.name,
start_ip_address="0.0.0.0",
end_ip_address="0.0.0.0")
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",
account_kind="StorageV2",
allow_blob_public_access=False,
network_rules=azure.storage.AccountNetworkRulesArgs(
default_action="Deny",
ip_rules=["127.0.0.1"],
virtual_network_subnet_ids=[example_subnet.id],
bypasses=["AzureServices"],
),
identity=azure.storage.AccountIdentityArgs(
type="SystemAssigned",
))
example_server_extended_auditing_policy = azure.mssql.ServerExtendedAuditingPolicy("exampleServerExtendedAuditingPolicy",
storage_endpoint=example_account.primary_blob_endpoint,
server_id=example_server.id,
retention_in_days=6,
log_monitoring_enabled=False,
storage_account_subscription_id=azurerm_subscription["primary"]["subscription_id"],
opts=pulumi.ResourceOptions(depends_on=[
example_assignment,
example_account,
]))
Example coming soon!
Create ServerExtendedAuditingPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServerExtendedAuditingPolicy(name: string, args: ServerExtendedAuditingPolicyArgs, opts?: CustomResourceOptions);@overload
def ServerExtendedAuditingPolicy(resource_name: str,
args: ServerExtendedAuditingPolicyInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServerExtendedAuditingPolicy(resource_name: str,
opts: Optional[ResourceOptions] = None,
server_id: Optional[str] = None,
enabled: Optional[bool] = None,
log_monitoring_enabled: Optional[bool] = None,
retention_in_days: Optional[int] = None,
storage_account_access_key: Optional[str] = None,
storage_account_access_key_is_secondary: Optional[bool] = None,
storage_account_subscription_id: Optional[str] = None,
storage_endpoint: Optional[str] = None)func NewServerExtendedAuditingPolicy(ctx *Context, name string, args ServerExtendedAuditingPolicyArgs, opts ...ResourceOption) (*ServerExtendedAuditingPolicy, error)public ServerExtendedAuditingPolicy(string name, ServerExtendedAuditingPolicyArgs args, CustomResourceOptions? opts = null)
public ServerExtendedAuditingPolicy(String name, ServerExtendedAuditingPolicyArgs args)
public ServerExtendedAuditingPolicy(String name, ServerExtendedAuditingPolicyArgs args, CustomResourceOptions options)
type: azure:mssql:ServerExtendedAuditingPolicy
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 ServerExtendedAuditingPolicyArgs
- 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 ServerExtendedAuditingPolicyInitArgs
- 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 ServerExtendedAuditingPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerExtendedAuditingPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerExtendedAuditingPolicyArgs
- 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 serverExtendedAuditingPolicyResource = new Azure.MSSql.ServerExtendedAuditingPolicy("serverExtendedAuditingPolicyResource", new()
{
ServerId = "string",
Enabled = false,
LogMonitoringEnabled = false,
RetentionInDays = 0,
StorageAccountAccessKey = "string",
StorageAccountAccessKeyIsSecondary = false,
StorageAccountSubscriptionId = "string",
StorageEndpoint = "string",
});
example, err := mssql.NewServerExtendedAuditingPolicy(ctx, "serverExtendedAuditingPolicyResource", &mssql.ServerExtendedAuditingPolicyArgs{
ServerId: pulumi.String("string"),
Enabled: pulumi.Bool(false),
LogMonitoringEnabled: pulumi.Bool(false),
RetentionInDays: pulumi.Int(0),
StorageAccountAccessKey: pulumi.String("string"),
StorageAccountAccessKeyIsSecondary: pulumi.Bool(false),
StorageAccountSubscriptionId: pulumi.String("string"),
StorageEndpoint: pulumi.String("string"),
})
var serverExtendedAuditingPolicyResource = new ServerExtendedAuditingPolicy("serverExtendedAuditingPolicyResource", ServerExtendedAuditingPolicyArgs.builder()
.serverId("string")
.enabled(false)
.logMonitoringEnabled(false)
.retentionInDays(0)
.storageAccountAccessKey("string")
.storageAccountAccessKeyIsSecondary(false)
.storageAccountSubscriptionId("string")
.storageEndpoint("string")
.build());
server_extended_auditing_policy_resource = azure.mssql.ServerExtendedAuditingPolicy("serverExtendedAuditingPolicyResource",
server_id="string",
enabled=False,
log_monitoring_enabled=False,
retention_in_days=0,
storage_account_access_key="string",
storage_account_access_key_is_secondary=False,
storage_account_subscription_id="string",
storage_endpoint="string")
const serverExtendedAuditingPolicyResource = new azure.mssql.ServerExtendedAuditingPolicy("serverExtendedAuditingPolicyResource", {
serverId: "string",
enabled: false,
logMonitoringEnabled: false,
retentionInDays: 0,
storageAccountAccessKey: "string",
storageAccountAccessKeyIsSecondary: false,
storageAccountSubscriptionId: "string",
storageEndpoint: "string",
});
type: azure:mssql:ServerExtendedAuditingPolicy
properties:
enabled: false
logMonitoringEnabled: false
retentionInDays: 0
serverId: string
storageAccountAccessKey: string
storageAccountAccessKeyIsSecondary: false
storageAccountSubscriptionId: string
storageEndpoint: string
ServerExtendedAuditingPolicy 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 ServerExtendedAuditingPolicy resource accepts the following input properties:
- Server
Id string - The ID of the sql server to set the extended auditing policy. Changing this forces a new resource to be created.
- Enabled bool
- Whether to enable the extended auditing policy. Possible values are
trueandfalse. Defaults totrue. - Log
Monitoring boolEnabled - Enable audit events to Azure Monitor? To enable server audit events to Azure Monitor, please enable its main database audit events to Azure Monitor.
- Retention
In intDays - The number of days to retain logs for in the storage account.
- Storage
Account stringAccess Key - The access key to use for the auditing storage account.
- Storage
Account boolAccess Key Is Secondary - Is
storage_account_access_keyvalue the storage's secondary key? - Storage
Account stringSubscription Id - The ID of the Subscription containing the Storage Account.
- Storage
Endpoint string - The blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all extended auditing logs.
- Server
Id string - The ID of the sql server to set the extended auditing policy. Changing this forces a new resource to be created.
- Enabled bool
- Whether to enable the extended auditing policy. Possible values are
trueandfalse. Defaults totrue. - Log
Monitoring boolEnabled - Enable audit events to Azure Monitor? To enable server audit events to Azure Monitor, please enable its main database audit events to Azure Monitor.
- Retention
In intDays - The number of days to retain logs for in the storage account.
- Storage
Account stringAccess Key - The access key to use for the auditing storage account.
- Storage
Account boolAccess Key Is Secondary - Is
storage_account_access_keyvalue the storage's secondary key? - Storage
Account stringSubscription Id - The ID of the Subscription containing the Storage Account.
- Storage
Endpoint string - The blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all extended auditing logs.
- server
Id String - The ID of the sql server to set the extended auditing policy. Changing this forces a new resource to be created.
- enabled Boolean
- Whether to enable the extended auditing policy. Possible values are
trueandfalse. Defaults totrue. - log
Monitoring BooleanEnabled - Enable audit events to Azure Monitor? To enable server audit events to Azure Monitor, please enable its main database audit events to Azure Monitor.
- retention
In IntegerDays - The number of days to retain logs for in the storage account.
- storage
Account StringAccess Key - The access key to use for the auditing storage account.
- storage
Account BooleanAccess Key Is Secondary - Is
storage_account_access_keyvalue the storage's secondary key? - storage
Account StringSubscription Id - The ID of the Subscription containing the Storage Account.
- storage
Endpoint String - The blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all extended auditing logs.
- server
Id string - The ID of the sql server to set the extended auditing policy. Changing this forces a new resource to be created.
- enabled boolean
- Whether to enable the extended auditing policy. Possible values are
trueandfalse. Defaults totrue. - log
Monitoring booleanEnabled - Enable audit events to Azure Monitor? To enable server audit events to Azure Monitor, please enable its main database audit events to Azure Monitor.
- retention
In numberDays - The number of days to retain logs for in the storage account.
- storage
Account stringAccess Key - The access key to use for the auditing storage account.
- storage
Account booleanAccess Key Is Secondary - Is
storage_account_access_keyvalue the storage's secondary key? - storage
Account stringSubscription Id - The ID of the Subscription containing the Storage Account.
- storage
Endpoint string - The blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all extended auditing logs.
- server_
id str - The ID of the sql server to set the extended auditing policy. Changing this forces a new resource to be created.
- enabled bool
- Whether to enable the extended auditing policy. Possible values are
trueandfalse. Defaults totrue. - log_
monitoring_ boolenabled - Enable audit events to Azure Monitor? To enable server audit events to Azure Monitor, please enable its main database audit events to Azure Monitor.
- retention_
in_ intdays - The number of days to retain logs for in the storage account.
- storage_
account_ straccess_ key - The access key to use for the auditing storage account.
- storage_
account_ boolaccess_ key_ is_ secondary - Is
storage_account_access_keyvalue the storage's secondary key? - storage_
account_ strsubscription_ id - The ID of the Subscription containing the Storage Account.
- storage_
endpoint str - The blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all extended auditing logs.
- server
Id String - The ID of the sql server to set the extended auditing policy. Changing this forces a new resource to be created.
- enabled Boolean
- Whether to enable the extended auditing policy. Possible values are
trueandfalse. Defaults totrue. - log
Monitoring BooleanEnabled - Enable audit events to Azure Monitor? To enable server audit events to Azure Monitor, please enable its main database audit events to Azure Monitor.
- retention
In NumberDays - The number of days to retain logs for in the storage account.
- storage
Account StringAccess Key - The access key to use for the auditing storage account.
- storage
Account BooleanAccess Key Is Secondary - Is
storage_account_access_keyvalue the storage's secondary key? - storage
Account StringSubscription Id - The ID of the Subscription containing the Storage Account.
- storage
Endpoint String - The blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all extended auditing logs.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServerExtendedAuditingPolicy 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 ServerExtendedAuditingPolicy Resource
Get an existing ServerExtendedAuditingPolicy 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?: ServerExtendedAuditingPolicyState, opts?: CustomResourceOptions): ServerExtendedAuditingPolicy@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
enabled: Optional[bool] = None,
log_monitoring_enabled: Optional[bool] = None,
retention_in_days: Optional[int] = None,
server_id: Optional[str] = None,
storage_account_access_key: Optional[str] = None,
storage_account_access_key_is_secondary: Optional[bool] = None,
storage_account_subscription_id: Optional[str] = None,
storage_endpoint: Optional[str] = None) -> ServerExtendedAuditingPolicyfunc GetServerExtendedAuditingPolicy(ctx *Context, name string, id IDInput, state *ServerExtendedAuditingPolicyState, opts ...ResourceOption) (*ServerExtendedAuditingPolicy, error)public static ServerExtendedAuditingPolicy Get(string name, Input<string> id, ServerExtendedAuditingPolicyState? state, CustomResourceOptions? opts = null)public static ServerExtendedAuditingPolicy get(String name, Output<String> id, ServerExtendedAuditingPolicyState state, CustomResourceOptions options)resources: _: type: azure:mssql:ServerExtendedAuditingPolicy 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.
- Enabled bool
- Whether to enable the extended auditing policy. Possible values are
trueandfalse. Defaults totrue. - Log
Monitoring boolEnabled - Enable audit events to Azure Monitor? To enable server audit events to Azure Monitor, please enable its main database audit events to Azure Monitor.
- Retention
In intDays - The number of days to retain logs for in the storage account.
- Server
Id string - The ID of the sql server to set the extended auditing policy. Changing this forces a new resource to be created.
- Storage
Account stringAccess Key - The access key to use for the auditing storage account.
- Storage
Account boolAccess Key Is Secondary - Is
storage_account_access_keyvalue the storage's secondary key? - Storage
Account stringSubscription Id - The ID of the Subscription containing the Storage Account.
- Storage
Endpoint string - The blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all extended auditing logs.
- Enabled bool
- Whether to enable the extended auditing policy. Possible values are
trueandfalse. Defaults totrue. - Log
Monitoring boolEnabled - Enable audit events to Azure Monitor? To enable server audit events to Azure Monitor, please enable its main database audit events to Azure Monitor.
- Retention
In intDays - The number of days to retain logs for in the storage account.
- Server
Id string - The ID of the sql server to set the extended auditing policy. Changing this forces a new resource to be created.
- Storage
Account stringAccess Key - The access key to use for the auditing storage account.
- Storage
Account boolAccess Key Is Secondary - Is
storage_account_access_keyvalue the storage's secondary key? - Storage
Account stringSubscription Id - The ID of the Subscription containing the Storage Account.
- Storage
Endpoint string - The blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all extended auditing logs.
- enabled Boolean
- Whether to enable the extended auditing policy. Possible values are
trueandfalse. Defaults totrue. - log
Monitoring BooleanEnabled - Enable audit events to Azure Monitor? To enable server audit events to Azure Monitor, please enable its main database audit events to Azure Monitor.
- retention
In IntegerDays - The number of days to retain logs for in the storage account.
- server
Id String - The ID of the sql server to set the extended auditing policy. Changing this forces a new resource to be created.
- storage
Account StringAccess Key - The access key to use for the auditing storage account.
- storage
Account BooleanAccess Key Is Secondary - Is
storage_account_access_keyvalue the storage's secondary key? - storage
Account StringSubscription Id - The ID of the Subscription containing the Storage Account.
- storage
Endpoint String - The blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all extended auditing logs.
- enabled boolean
- Whether to enable the extended auditing policy. Possible values are
trueandfalse. Defaults totrue. - log
Monitoring booleanEnabled - Enable audit events to Azure Monitor? To enable server audit events to Azure Monitor, please enable its main database audit events to Azure Monitor.
- retention
In numberDays - The number of days to retain logs for in the storage account.
- server
Id string - The ID of the sql server to set the extended auditing policy. Changing this forces a new resource to be created.
- storage
Account stringAccess Key - The access key to use for the auditing storage account.
- storage
Account booleanAccess Key Is Secondary - Is
storage_account_access_keyvalue the storage's secondary key? - storage
Account stringSubscription Id - The ID of the Subscription containing the Storage Account.
- storage
Endpoint string - The blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all extended auditing logs.
- enabled bool
- Whether to enable the extended auditing policy. Possible values are
trueandfalse. Defaults totrue. - log_
monitoring_ boolenabled - Enable audit events to Azure Monitor? To enable server audit events to Azure Monitor, please enable its main database audit events to Azure Monitor.
- retention_
in_ intdays - The number of days to retain logs for in the storage account.
- server_
id str - The ID of the sql server to set the extended auditing policy. Changing this forces a new resource to be created.
- storage_
account_ straccess_ key - The access key to use for the auditing storage account.
- storage_
account_ boolaccess_ key_ is_ secondary - Is
storage_account_access_keyvalue the storage's secondary key? - storage_
account_ strsubscription_ id - The ID of the Subscription containing the Storage Account.
- storage_
endpoint str - The blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all extended auditing logs.
- enabled Boolean
- Whether to enable the extended auditing policy. Possible values are
trueandfalse. Defaults totrue. - log
Monitoring BooleanEnabled - Enable audit events to Azure Monitor? To enable server audit events to Azure Monitor, please enable its main database audit events to Azure Monitor.
- retention
In NumberDays - The number of days to retain logs for in the storage account.
- server
Id String - The ID of the sql server to set the extended auditing policy. Changing this forces a new resource to be created.
- storage
Account StringAccess Key - The access key to use for the auditing storage account.
- storage
Account BooleanAccess Key Is Secondary - Is
storage_account_access_keyvalue the storage's secondary key? - storage
Account StringSubscription Id - The ID of the Subscription containing the Storage Account.
- storage
Endpoint String - The blob storage endpoint (e.g. https://MyAccount.blob.core.windows.net). This blob storage will hold all extended auditing logs.
Import
Ms Sql Server Extended Auditing Policys can be imported using the resource id, e.g.
$ pulumi import azure:mssql/serverExtendedAuditingPolicy:ServerExtendedAuditingPolicy example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlServer1/extendedAuditingSettings/default
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
