We recommend using Azure Native.
azure.mssql.ServerMicrosoftSupportAuditingPolicy
Explore with Pulumi AI
Manages a MS SQL Server Microsoft Support Auditing Policy.
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 exampleServer = new azure.mssql.Server("example", {
    name: "example-sqlserver",
    resourceGroupName: example.name,
    location: example.location,
    version: "12.0",
    administratorLogin: "missadministrator",
    administratorLoginPassword: "AdminPassword123!",
});
const exampleAccount = new azure.storage.Account("example", {
    name: "examplesa",
    resourceGroupName: example.name,
    location: example.location,
    accountTier: "Standard",
    accountReplicationType: "LRS",
});
const exampleServerMicrosoftSupportAuditingPolicy = new azure.mssql.ServerMicrosoftSupportAuditingPolicy("example", {
    serverId: exampleServer.id,
    blobStorageEndpoint: exampleAccount.primaryBlobEndpoint,
    storageAccountAccessKey: exampleAccount.primaryAccessKey,
});
import pulumi
import pulumi_azure as azure
example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_server = azure.mssql.Server("example",
    name="example-sqlserver",
    resource_group_name=example.name,
    location=example.location,
    version="12.0",
    administrator_login="missadministrator",
    administrator_login_password="AdminPassword123!")
example_account = azure.storage.Account("example",
    name="examplesa",
    resource_group_name=example.name,
    location=example.location,
    account_tier="Standard",
    account_replication_type="LRS")
example_server_microsoft_support_auditing_policy = azure.mssql.ServerMicrosoftSupportAuditingPolicy("example",
    server_id=example_server.id,
    blob_storage_endpoint=example_account.primary_blob_endpoint,
    storage_account_access_key=example_account.primary_access_key)
package main
import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/mssql"
	"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
		}
		exampleServer, err := mssql.NewServer(ctx, "example", &mssql.ServerArgs{
			Name:                       pulumi.String("example-sqlserver"),
			ResourceGroupName:          example.Name,
			Location:                   example.Location,
			Version:                    pulumi.String("12.0"),
			AdministratorLogin:         pulumi.String("missadministrator"),
			AdministratorLoginPassword: pulumi.String("AdminPassword123!"),
		})
		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("LRS"),
		})
		if err != nil {
			return err
		}
		_, err = mssql.NewServerMicrosoftSupportAuditingPolicy(ctx, "example", &mssql.ServerMicrosoftSupportAuditingPolicyArgs{
			ServerId:                exampleServer.ID(),
			BlobStorageEndpoint:     exampleAccount.PrimaryBlobEndpoint,
			StorageAccountAccessKey: exampleAccount.PrimaryAccessKey,
		})
		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 exampleServer = new Azure.MSSql.Server("example", new()
    {
        Name = "example-sqlserver",
        ResourceGroupName = example.Name,
        Location = example.Location,
        Version = "12.0",
        AdministratorLogin = "missadministrator",
        AdministratorLoginPassword = "AdminPassword123!",
    });
    var exampleAccount = new Azure.Storage.Account("example", new()
    {
        Name = "examplesa",
        ResourceGroupName = example.Name,
        Location = example.Location,
        AccountTier = "Standard",
        AccountReplicationType = "LRS",
    });
    var exampleServerMicrosoftSupportAuditingPolicy = new Azure.MSSql.ServerMicrosoftSupportAuditingPolicy("example", new()
    {
        ServerId = exampleServer.Id,
        BlobStorageEndpoint = exampleAccount.PrimaryBlobEndpoint,
        StorageAccountAccessKey = exampleAccount.PrimaryAccessKey,
    });
});
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.mssql.Server;
import com.pulumi.azure.mssql.ServerArgs;
import com.pulumi.azure.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.mssql.ServerMicrosoftSupportAuditingPolicy;
import com.pulumi.azure.mssql.ServerMicrosoftSupportAuditingPolicyArgs;
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 exampleServer = new Server("exampleServer", ServerArgs.builder()
            .name("example-sqlserver")
            .resourceGroupName(example.name())
            .location(example.location())
            .version("12.0")
            .administratorLogin("missadministrator")
            .administratorLoginPassword("AdminPassword123!")
            .build());
        var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
            .name("examplesa")
            .resourceGroupName(example.name())
            .location(example.location())
            .accountTier("Standard")
            .accountReplicationType("LRS")
            .build());
        var exampleServerMicrosoftSupportAuditingPolicy = new ServerMicrosoftSupportAuditingPolicy("exampleServerMicrosoftSupportAuditingPolicy", ServerMicrosoftSupportAuditingPolicyArgs.builder()
            .serverId(exampleServer.id())
            .blobStorageEndpoint(exampleAccount.primaryBlobEndpoint())
            .storageAccountAccessKey(exampleAccount.primaryAccessKey())
            .build());
    }
}
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleServer:
    type: azure:mssql:Server
    name: example
    properties:
      name: example-sqlserver
      resourceGroupName: ${example.name}
      location: ${example.location}
      version: '12.0'
      administratorLogin: missadministrator
      administratorLoginPassword: AdminPassword123!
  exampleAccount:
    type: azure:storage:Account
    name: example
    properties:
      name: examplesa
      resourceGroupName: ${example.name}
      location: ${example.location}
      accountTier: Standard
      accountReplicationType: LRS
  exampleServerMicrosoftSupportAuditingPolicy:
    type: azure:mssql:ServerMicrosoftSupportAuditingPolicy
    name: example
    properties:
      serverId: ${exampleServer.id}
      blobStorageEndpoint: ${exampleAccount.primaryBlobEndpoint}
      storageAccountAccessKey: ${exampleAccount.primaryAccessKey}
With Storage Account Behind VNet And Firewall
Coming soon!
Coming soon!
Coming soon!
Coming soon!
Coming soon!
resources:
  exampleResourceGroup:
    type: azure:core:ResourceGroup
    name: example
    properties:
      name: example
      location: West Europe
  exampleVirtualNetwork:
    type: azure:network:VirtualNetwork
    name: example
    properties:
      name: virtnetname-1
      addressSpaces:
        - 10.0.0.0/16
      location: ${exampleResourceGroup.location}
      resourceGroupName: ${exampleResourceGroup.name}
  exampleSubnet:
    type: azure:network:Subnet
    name: example
    properties:
      name: subnetname-1
      resourceGroupName: ${exampleResourceGroup.name}
      virtualNetworkName: ${exampleVirtualNetwork.name}
      addressPrefixes:
        - 10.0.2.0/24
      serviceEndpoints:
        - Microsoft.Sql
        - Microsoft.Storage
      enforcePrivateLinkEndpointNetworkPolicies: true
  exampleAssignment:
    type: azure:authorization:Assignment
    name: example
    properties:
      scope: ${primary.id}
      roleDefinitionName: Storage Blob Data Contributor
      principalId: ${exampleServer.identity.principalId}
  exampleServer:
    type: azure:mssql:Server
    name: example
    properties:
      name: example-sqlserver
      resourceGroupName: ${exampleResourceGroup.name}
      location: ${exampleResourceGroup.location}
      version: '12.0'
      administratorLogin: missadministrator
      administratorLoginPassword: AdminPassword123!
      minimumTlsVersion: '1.2'
      identity:
        type: SystemAssigned
  sqlvnetrule:
    type: azurerm:sqlVirtualNetworkRule
    properties:
      name: sql-vnet-rule
      resourceGroupName: ${exampleResourceGroup.name}
      serverName: ${exampleServer.name}
      subnetId: ${exampleSubnet.id}
  exampleSqlFirewallRule:
    type: azurerm:sqlFirewallRule
    name: example
    properties:
      name: FirewallRule1
      resourceGroupName: ${exampleResourceGroup.name}
      serverName: ${exampleServer.name}
      startIpAddress: 0.0.0.0
      endIpAddress: 0.0.0.0
  exampleAccount:
    type: azure:storage:Account
    name: example
    properties:
      name: examplesa
      resourceGroupName: ${exampleResourceGroup.name}
      location: ${exampleResourceGroup.location}
      accountTier: Standard
      accountReplicationType: LRS
      accountKind: StorageV2
      allowNestedItemsToBePublic: false
      networkRules:
        defaultAction: Deny
        ipRules:
          - 127.0.0.1
        virtualNetworkSubnetIds:
          - ${exampleSubnet.id}
        bypasses:
          - AzureServices
      identity:
        type: SystemAssigned
  exampleServerMicrosoftSupportAuditingPolicy:
    type: azure:mssql:ServerMicrosoftSupportAuditingPolicy
    name: example
    properties:
      blobStorageEndpoint: ${exampleAccount.primaryBlobEndpoint}
      serverId: ${exampleServer.id}
      logMonitoringEnabled: false
      storageAccountSubscriptionId: ${primaryAzurermSubscription.subscriptionId}
    options:
      dependsOn:
        - ${exampleAssignment}
        - ${exampleAccount}
variables:
  primary:
    fn::invoke:
      function: azure:core:getSubscription
      arguments: {}
  example:
    fn::invoke:
      function: azure:core:getClientConfig
      arguments: {}
Create ServerMicrosoftSupportAuditingPolicy Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServerMicrosoftSupportAuditingPolicy(name: string, args: ServerMicrosoftSupportAuditingPolicyArgs, opts?: CustomResourceOptions);@overload
def ServerMicrosoftSupportAuditingPolicy(resource_name: str,
                                         args: ServerMicrosoftSupportAuditingPolicyArgs,
                                         opts: Optional[ResourceOptions] = None)
@overload
def ServerMicrosoftSupportAuditingPolicy(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         server_id: Optional[str] = None,
                                         blob_storage_endpoint: Optional[str] = None,
                                         enabled: Optional[bool] = None,
                                         log_monitoring_enabled: Optional[bool] = None,
                                         storage_account_access_key: Optional[str] = None,
                                         storage_account_subscription_id: Optional[str] = None)func NewServerMicrosoftSupportAuditingPolicy(ctx *Context, name string, args ServerMicrosoftSupportAuditingPolicyArgs, opts ...ResourceOption) (*ServerMicrosoftSupportAuditingPolicy, error)public ServerMicrosoftSupportAuditingPolicy(string name, ServerMicrosoftSupportAuditingPolicyArgs args, CustomResourceOptions? opts = null)
public ServerMicrosoftSupportAuditingPolicy(String name, ServerMicrosoftSupportAuditingPolicyArgs args)
public ServerMicrosoftSupportAuditingPolicy(String name, ServerMicrosoftSupportAuditingPolicyArgs args, CustomResourceOptions options)
type: azure:mssql:ServerMicrosoftSupportAuditingPolicy
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 ServerMicrosoftSupportAuditingPolicyArgs
- 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 ServerMicrosoftSupportAuditingPolicyArgs
- 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 ServerMicrosoftSupportAuditingPolicyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServerMicrosoftSupportAuditingPolicyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServerMicrosoftSupportAuditingPolicyArgs
- 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 serverMicrosoftSupportAuditingPolicyResource = new Azure.MSSql.ServerMicrosoftSupportAuditingPolicy("serverMicrosoftSupportAuditingPolicyResource", new()
{
    ServerId = "string",
    BlobStorageEndpoint = "string",
    Enabled = false,
    LogMonitoringEnabled = false,
    StorageAccountAccessKey = "string",
    StorageAccountSubscriptionId = "string",
});
example, err := mssql.NewServerMicrosoftSupportAuditingPolicy(ctx, "serverMicrosoftSupportAuditingPolicyResource", &mssql.ServerMicrosoftSupportAuditingPolicyArgs{
	ServerId:                     pulumi.String("string"),
	BlobStorageEndpoint:          pulumi.String("string"),
	Enabled:                      pulumi.Bool(false),
	LogMonitoringEnabled:         pulumi.Bool(false),
	StorageAccountAccessKey:      pulumi.String("string"),
	StorageAccountSubscriptionId: pulumi.String("string"),
})
var serverMicrosoftSupportAuditingPolicyResource = new ServerMicrosoftSupportAuditingPolicy("serverMicrosoftSupportAuditingPolicyResource", ServerMicrosoftSupportAuditingPolicyArgs.builder()
    .serverId("string")
    .blobStorageEndpoint("string")
    .enabled(false)
    .logMonitoringEnabled(false)
    .storageAccountAccessKey("string")
    .storageAccountSubscriptionId("string")
    .build());
server_microsoft_support_auditing_policy_resource = azure.mssql.ServerMicrosoftSupportAuditingPolicy("serverMicrosoftSupportAuditingPolicyResource",
    server_id="string",
    blob_storage_endpoint="string",
    enabled=False,
    log_monitoring_enabled=False,
    storage_account_access_key="string",
    storage_account_subscription_id="string")
const serverMicrosoftSupportAuditingPolicyResource = new azure.mssql.ServerMicrosoftSupportAuditingPolicy("serverMicrosoftSupportAuditingPolicyResource", {
    serverId: "string",
    blobStorageEndpoint: "string",
    enabled: false,
    logMonitoringEnabled: false,
    storageAccountAccessKey: "string",
    storageAccountSubscriptionId: "string",
});
type: azure:mssql:ServerMicrosoftSupportAuditingPolicy
properties:
    blobStorageEndpoint: string
    enabled: false
    logMonitoringEnabled: false
    serverId: string
    storageAccountAccessKey: string
    storageAccountSubscriptionId: string
ServerMicrosoftSupportAuditingPolicy 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 ServerMicrosoftSupportAuditingPolicy resource accepts the following input properties:
- ServerId string
- The ID of the SQL Server to set the extended auditing policy. Changing this forces a new resource to be created.
- BlobStorage stringEndpoint 
- The blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Microsoft support auditing logs.
- Enabled bool
- Whether to enable the extended auditing policy. Possible values are - trueand- false. Defaults to- true.- ->NOTE: If - enabledis- true,- blob_storage_endpointor- log_monitoring_enabledare required.
- LogMonitoring 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. Defaults to true.
- StorageAccount stringAccess Key 
- The access key to use for the auditing storage account.
- StorageAccount stringSubscription Id 
- The ID of the Subscription containing the Storage Account.
- ServerId string
- The ID of the SQL Server to set the extended auditing policy. Changing this forces a new resource to be created.
- BlobStorage stringEndpoint 
- The blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Microsoft support auditing logs.
- Enabled bool
- Whether to enable the extended auditing policy. Possible values are - trueand- false. Defaults to- true.- ->NOTE: If - enabledis- true,- blob_storage_endpointor- log_monitoring_enabledare required.
- LogMonitoring 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. Defaults to true.
- StorageAccount stringAccess Key 
- The access key to use for the auditing storage account.
- StorageAccount stringSubscription Id 
- The ID of the Subscription containing the Storage Account.
- serverId String
- The ID of the SQL Server to set the extended auditing policy. Changing this forces a new resource to be created.
- blobStorage StringEndpoint 
- The blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Microsoft support auditing logs.
- enabled Boolean
- Whether to enable the extended auditing policy. Possible values are - trueand- false. Defaults to- true.- ->NOTE: If - enabledis- true,- blob_storage_endpointor- log_monitoring_enabledare required.
- logMonitoring 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. Defaults to true.
- storageAccount StringAccess Key 
- The access key to use for the auditing storage account.
- storageAccount StringSubscription Id 
- The ID of the Subscription containing the Storage Account.
- serverId string
- The ID of the SQL Server to set the extended auditing policy. Changing this forces a new resource to be created.
- blobStorage stringEndpoint 
- The blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Microsoft support auditing logs.
- enabled boolean
- Whether to enable the extended auditing policy. Possible values are - trueand- false. Defaults to- true.- ->NOTE: If - enabledis- true,- blob_storage_endpointor- log_monitoring_enabledare required.
- logMonitoring 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. Defaults to true.
- storageAccount stringAccess Key 
- The access key to use for the auditing storage account.
- storageAccount stringSubscription Id 
- The ID of the Subscription containing 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.
- blob_storage_ strendpoint 
- The blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Microsoft support auditing logs.
- enabled bool
- Whether to enable the extended auditing policy. Possible values are - trueand- false. Defaults to- true.- ->NOTE: If - enabledis- true,- blob_storage_endpointor- log_monitoring_enabledare required.
- 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. Defaults to true.
- storage_account_ straccess_ key 
- The access key to use for the auditing storage account.
- storage_account_ strsubscription_ id 
- The ID of the Subscription containing the Storage Account.
- serverId String
- The ID of the SQL Server to set the extended auditing policy. Changing this forces a new resource to be created.
- blobStorage StringEndpoint 
- The blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Microsoft support auditing logs.
- enabled Boolean
- Whether to enable the extended auditing policy. Possible values are - trueand- false. Defaults to- true.- ->NOTE: If - enabledis- true,- blob_storage_endpointor- log_monitoring_enabledare required.
- logMonitoring 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. Defaults to true.
- storageAccount StringAccess Key 
- The access key to use for the auditing storage account.
- storageAccount StringSubscription Id 
- The ID of the Subscription containing the Storage Account.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServerMicrosoftSupportAuditingPolicy 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 ServerMicrosoftSupportAuditingPolicy Resource
Get an existing ServerMicrosoftSupportAuditingPolicy 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?: ServerMicrosoftSupportAuditingPolicyState, opts?: CustomResourceOptions): ServerMicrosoftSupportAuditingPolicy@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        blob_storage_endpoint: Optional[str] = None,
        enabled: Optional[bool] = None,
        log_monitoring_enabled: Optional[bool] = None,
        server_id: Optional[str] = None,
        storage_account_access_key: Optional[str] = None,
        storage_account_subscription_id: Optional[str] = None) -> ServerMicrosoftSupportAuditingPolicyfunc GetServerMicrosoftSupportAuditingPolicy(ctx *Context, name string, id IDInput, state *ServerMicrosoftSupportAuditingPolicyState, opts ...ResourceOption) (*ServerMicrosoftSupportAuditingPolicy, error)public static ServerMicrosoftSupportAuditingPolicy Get(string name, Input<string> id, ServerMicrosoftSupportAuditingPolicyState? state, CustomResourceOptions? opts = null)public static ServerMicrosoftSupportAuditingPolicy get(String name, Output<String> id, ServerMicrosoftSupportAuditingPolicyState state, CustomResourceOptions options)resources:  _:    type: azure:mssql:ServerMicrosoftSupportAuditingPolicy    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.
- BlobStorage stringEndpoint 
- The blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Microsoft support auditing logs.
- Enabled bool
- Whether to enable the extended auditing policy. Possible values are - trueand- false. Defaults to- true.- ->NOTE: If - enabledis- true,- blob_storage_endpointor- log_monitoring_enabledare required.
- LogMonitoring 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. Defaults to true.
- ServerId string
- The ID of the SQL Server to set the extended auditing policy. Changing this forces a new resource to be created.
- StorageAccount stringAccess Key 
- The access key to use for the auditing storage account.
- StorageAccount stringSubscription Id 
- The ID of the Subscription containing the Storage Account.
- BlobStorage stringEndpoint 
- The blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Microsoft support auditing logs.
- Enabled bool
- Whether to enable the extended auditing policy. Possible values are - trueand- false. Defaults to- true.- ->NOTE: If - enabledis- true,- blob_storage_endpointor- log_monitoring_enabledare required.
- LogMonitoring 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. Defaults to true.
- ServerId string
- The ID of the SQL Server to set the extended auditing policy. Changing this forces a new resource to be created.
- StorageAccount stringAccess Key 
- The access key to use for the auditing storage account.
- StorageAccount stringSubscription Id 
- The ID of the Subscription containing the Storage Account.
- blobStorage StringEndpoint 
- The blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Microsoft support auditing logs.
- enabled Boolean
- Whether to enable the extended auditing policy. Possible values are - trueand- false. Defaults to- true.- ->NOTE: If - enabledis- true,- blob_storage_endpointor- log_monitoring_enabledare required.
- logMonitoring 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. Defaults to true.
- serverId String
- The ID of the SQL Server to set the extended auditing policy. Changing this forces a new resource to be created.
- storageAccount StringAccess Key 
- The access key to use for the auditing storage account.
- storageAccount StringSubscription Id 
- The ID of the Subscription containing the Storage Account.
- blobStorage stringEndpoint 
- The blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Microsoft support auditing logs.
- enabled boolean
- Whether to enable the extended auditing policy. Possible values are - trueand- false. Defaults to- true.- ->NOTE: If - enabledis- true,- blob_storage_endpointor- log_monitoring_enabledare required.
- logMonitoring 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. Defaults to true.
- serverId string
- The ID of the SQL Server to set the extended auditing policy. Changing this forces a new resource to be created.
- storageAccount stringAccess Key 
- The access key to use for the auditing storage account.
- storageAccount stringSubscription Id 
- The ID of the Subscription containing the Storage Account.
- blob_storage_ strendpoint 
- The blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Microsoft support auditing logs.
- enabled bool
- Whether to enable the extended auditing policy. Possible values are - trueand- false. Defaults to- true.- ->NOTE: If - enabledis- true,- blob_storage_endpointor- log_monitoring_enabledare required.
- 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. Defaults to true.
- 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_ strsubscription_ id 
- The ID of the Subscription containing the Storage Account.
- blobStorage StringEndpoint 
- The blob storage endpoint (e.g. https://example.blob.core.windows.net). This blob storage will hold all Microsoft support auditing logs.
- enabled Boolean
- Whether to enable the extended auditing policy. Possible values are - trueand- false. Defaults to- true.- ->NOTE: If - enabledis- true,- blob_storage_endpointor- log_monitoring_enabledare required.
- logMonitoring 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. Defaults to true.
- serverId String
- The ID of the SQL Server to set the extended auditing policy. Changing this forces a new resource to be created.
- storageAccount StringAccess Key 
- The access key to use for the auditing storage account.
- storageAccount StringSubscription Id 
- The ID of the Subscription containing the Storage Account.
Import
MS SQL Server Microsoft Support Auditing Policies can be imported using the resource id, e.g.
$ pulumi import azure:mssql/serverMicrosoftSupportAuditingPolicy:ServerMicrosoftSupportAuditingPolicy example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Sql/servers/sqlServer1/devOpsAuditingSettings/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.