1. Packages
  2. Azure Classic
  3. API Docs
  4. mssql
  5. ServerMicrosoftSupportAuditingPolicy

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

azure.mssql.ServerMicrosoftSupportAuditingPolicy

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi

    Manages a MS SQL Server Microsoft Support Auditing Policy.

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
        {
            Location = "West Europe",
        });
    
        var exampleServer = new Azure.MSSql.Server("exampleServer", new()
        {
            ResourceGroupName = exampleResourceGroup.Name,
            Location = exampleResourceGroup.Location,
            Version = "12.0",
            AdministratorLogin = "missadministrator",
            AdministratorLoginPassword = "AdminPassword123!",
        });
    
        var exampleAccount = new Azure.Storage.Account("exampleAccount", new()
        {
            ResourceGroupName = exampleResourceGroup.Name,
            Location = exampleResourceGroup.Location,
            AccountTier = "Standard",
            AccountReplicationType = "LRS",
        });
    
        var exampleServerMicrosoftSupportAuditingPolicy = new Azure.MSSql.ServerMicrosoftSupportAuditingPolicy("exampleServerMicrosoftSupportAuditingPolicy", new()
        {
            ServerId = exampleServer.Id,
            BlobStorageEndpoint = exampleAccount.PrimaryBlobEndpoint,
            StorageAccountAccessKey = exampleAccount.PrimaryAccessKey,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/mssql"
    	"github.com/pulumi/pulumi-azure/sdk/v5/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.NewServerMicrosoftSupportAuditingPolicy(ctx, "exampleServerMicrosoftSupportAuditingPolicy", &mssql.ServerMicrosoftSupportAuditingPolicyArgs{
    			ServerId:                exampleServer.ID(),
    			BlobStorageEndpoint:     exampleAccount.PrimaryBlobEndpoint,
    			StorageAccountAccessKey: exampleAccount.PrimaryAccessKey,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
                .location("West Europe")
                .build());
    
            var exampleServer = new Server("exampleServer", ServerArgs.builder()        
                .resourceGroupName(exampleResourceGroup.name())
                .location(exampleResourceGroup.location())
                .version("12.0")
                .administratorLogin("missadministrator")
                .administratorLoginPassword("AdminPassword123!")
                .build());
    
            var exampleAccount = new Account("exampleAccount", AccountArgs.builder()        
                .resourceGroupName(exampleResourceGroup.name())
                .location(exampleResourceGroup.location())
                .accountTier("Standard")
                .accountReplicationType("LRS")
                .build());
    
            var exampleServerMicrosoftSupportAuditingPolicy = new ServerMicrosoftSupportAuditingPolicy("exampleServerMicrosoftSupportAuditingPolicy", ServerMicrosoftSupportAuditingPolicyArgs.builder()        
                .serverId(exampleServer.id())
                .blobStorageEndpoint(exampleAccount.primaryBlobEndpoint())
                .storageAccountAccessKey(exampleAccount.primaryAccessKey())
                .build());
    
        }
    }
    
    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_microsoft_support_auditing_policy = azure.mssql.ServerMicrosoftSupportAuditingPolicy("exampleServerMicrosoftSupportAuditingPolicy",
        server_id=example_server.id,
        blob_storage_endpoint=example_account.primary_blob_endpoint,
        storage_account_access_key=example_account.primary_access_key)
    
    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 exampleServerMicrosoftSupportAuditingPolicy = new azure.mssql.ServerMicrosoftSupportAuditingPolicy("exampleServerMicrosoftSupportAuditingPolicy", {
        serverId: exampleServer.id,
        blobStorageEndpoint: exampleAccount.primaryBlobEndpoint,
        storageAccountAccessKey: exampleAccount.primaryAccessKey,
    });
    
    resources:
      exampleResourceGroup:
        type: azure:core:ResourceGroup
        properties:
          location: West Europe
      exampleServer:
        type: azure:mssql:Server
        properties:
          resourceGroupName: ${exampleResourceGroup.name}
          location: ${exampleResourceGroup.location}
          version: '12.0'
          administratorLogin: missadministrator
          administratorLoginPassword: AdminPassword123!
      exampleAccount:
        type: azure:storage:Account
        properties:
          resourceGroupName: ${exampleResourceGroup.name}
          location: ${exampleResourceGroup.location}
          accountTier: Standard
          accountReplicationType: LRS
      exampleServerMicrosoftSupportAuditingPolicy:
        type: azure:mssql:ServerMicrosoftSupportAuditingPolicy
        properties:
          serverId: ${exampleServer.id}
          blobStorageEndpoint: ${exampleAccount.primaryBlobEndpoint}
          storageAccountAccessKey: ${exampleAccount.primaryAccessKey}
    

    With Storage Account Behind VNet And Firewall

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var primary = Azure.Core.GetSubscription.Invoke();
    
        var exampleClientConfig = Azure.Core.GetClientConfig.Invoke();
    
        var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
        {
            Location = "West Europe",
        });
    
        var exampleVirtualNetwork = new Azure.Network.VirtualNetwork("exampleVirtualNetwork", new()
        {
            AddressSpaces = new[]
            {
                "10.0.0.0/16",
            },
            Location = exampleResourceGroup.Location,
            ResourceGroupName = exampleResourceGroup.Name,
        });
    
        var exampleSubnet = new Azure.Network.Subnet("exampleSubnet", new()
        {
            ResourceGroupName = exampleResourceGroup.Name,
            VirtualNetworkName = exampleVirtualNetwork.Name,
            AddressPrefixes = new[]
            {
                "10.0.2.0/24",
            },
            ServiceEndpoints = new[]
            {
                "Microsoft.Sql",
                "Microsoft.Storage",
            },
            EnforcePrivateLinkEndpointNetworkPolicies = true,
        });
    
        var exampleServer = new Azure.MSSql.Server("exampleServer", new()
        {
            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()
        {
            Scope = primary.Apply(getSubscriptionResult => getSubscriptionResult.Id),
            RoleDefinitionName = "Storage Blob Data Contributor",
            PrincipalId = exampleServer.Identity.Apply(identity => identity?.PrincipalId),
        });
    
        var sqlvnetrule = new Azure.Sql.VirtualNetworkRule("sqlvnetrule", new()
        {
            ResourceGroupName = exampleResourceGroup.Name,
            ServerName = exampleServer.Name,
            SubnetId = exampleSubnet.Id,
        });
    
        var exampleFirewallRule = new Azure.Sql.FirewallRule("exampleFirewallRule", new()
        {
            ResourceGroupName = exampleResourceGroup.Name,
            ServerName = exampleServer.Name,
            StartIpAddress = "0.0.0.0",
            EndIpAddress = "0.0.0.0",
        });
    
        var exampleAccount = new Azure.Storage.Account("exampleAccount", new()
        {
            ResourceGroupName = exampleResourceGroup.Name,
            Location = exampleResourceGroup.Location,
            AccountTier = "Standard",
            AccountReplicationType = "LRS",
            AccountKind = "StorageV2",
            AllowNestedItemsToBePublic = false,
            NetworkRules = new Azure.Storage.Inputs.AccountNetworkRulesArgs
            {
                DefaultAction = "Deny",
                IpRules = new[]
                {
                    "127.0.0.1",
                },
                VirtualNetworkSubnetIds = new[]
                {
                    exampleSubnet.Id,
                },
                Bypasses = new[]
                {
                    "AzureServices",
                },
            },
            Identity = new Azure.Storage.Inputs.AccountIdentityArgs
            {
                Type = "SystemAssigned",
            },
        });
    
        var exampleServerMicrosoftSupportAuditingPolicy = new Azure.MSSql.ServerMicrosoftSupportAuditingPolicy("exampleServerMicrosoftSupportAuditingPolicy", new()
        {
            BlobStorageEndpoint = exampleAccount.PrimaryBlobEndpoint,
            ServerId = exampleServer.Id,
            LogMonitoringEnabled = false,
            StorageAccountSubscriptionId = azurerm_subscription.Primary.Subscription_id,
        }, new CustomResourceOptions
        {
            DependsOn = new[]
            {
                exampleAssignment,
                exampleAccount,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/authorization"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/mssql"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/network"
    	"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/sql"
    	"github.com/pulumi/pulumi-azure/sdk/v5/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.StringPtrOutput),
    		})
    		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"),
    			AllowNestedItemsToBePublic: pulumi.Bool(false),
    			NetworkRules: &storage.AccountNetworkRulesTypeArgs{
    				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.NewServerMicrosoftSupportAuditingPolicy(ctx, "exampleServerMicrosoftSupportAuditingPolicy", &mssql.ServerMicrosoftSupportAuditingPolicyArgs{
    			BlobStorageEndpoint:          exampleAccount.PrimaryBlobEndpoint,
    			ServerId:                     exampleServer.ID(),
    			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
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.core.CoreFunctions;
    import com.pulumi.azure.core.inputs.GetSubscriptionArgs;
    import com.pulumi.azure.core.ResourceGroup;
    import com.pulumi.azure.core.ResourceGroupArgs;
    import com.pulumi.azure.network.VirtualNetwork;
    import com.pulumi.azure.network.VirtualNetworkArgs;
    import com.pulumi.azure.network.Subnet;
    import com.pulumi.azure.network.SubnetArgs;
    import com.pulumi.azure.mssql.Server;
    import com.pulumi.azure.mssql.ServerArgs;
    import com.pulumi.azure.mssql.inputs.ServerIdentityArgs;
    import com.pulumi.azure.authorization.Assignment;
    import com.pulumi.azure.authorization.AssignmentArgs;
    import com.pulumi.azure.sql.VirtualNetworkRule;
    import com.pulumi.azure.sql.VirtualNetworkRuleArgs;
    import com.pulumi.azure.sql.FirewallRule;
    import com.pulumi.azure.sql.FirewallRuleArgs;
    import com.pulumi.azure.storage.Account;
    import com.pulumi.azure.storage.AccountArgs;
    import com.pulumi.azure.storage.inputs.AccountNetworkRulesArgs;
    import com.pulumi.azure.storage.inputs.AccountIdentityArgs;
    import com.pulumi.azure.mssql.ServerMicrosoftSupportAuditingPolicy;
    import com.pulumi.azure.mssql.ServerMicrosoftSupportAuditingPolicyArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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) {
            final var primary = CoreFunctions.getSubscription();
    
            final var exampleClientConfig = CoreFunctions.getClientConfig();
    
            var exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()        
                .location("West Europe")
                .build());
    
            var exampleVirtualNetwork = new VirtualNetwork("exampleVirtualNetwork", VirtualNetworkArgs.builder()        
                .addressSpaces("10.0.0.0/16")
                .location(exampleResourceGroup.location())
                .resourceGroupName(exampleResourceGroup.name())
                .build());
    
            var exampleSubnet = new Subnet("exampleSubnet", SubnetArgs.builder()        
                .resourceGroupName(exampleResourceGroup.name())
                .virtualNetworkName(exampleVirtualNetwork.name())
                .addressPrefixes("10.0.2.0/24")
                .serviceEndpoints(            
                    "Microsoft.Sql",
                    "Microsoft.Storage")
                .enforcePrivateLinkEndpointNetworkPolicies(true)
                .build());
    
            var exampleServer = new Server("exampleServer", ServerArgs.builder()        
                .resourceGroupName(exampleResourceGroup.name())
                .location(exampleResourceGroup.location())
                .version("12.0")
                .administratorLogin("missadministrator")
                .administratorLoginPassword("AdminPassword123!")
                .minimumTlsVersion("1.2")
                .identity(ServerIdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .build());
    
            var exampleAssignment = new Assignment("exampleAssignment", AssignmentArgs.builder()        
                .scope(primary.applyValue(getSubscriptionResult -> getSubscriptionResult.id()))
                .roleDefinitionName("Storage Blob Data Contributor")
                .principalId(exampleServer.identity().applyValue(identity -> identity.principalId()))
                .build());
    
            var sqlvnetrule = new VirtualNetworkRule("sqlvnetrule", VirtualNetworkRuleArgs.builder()        
                .resourceGroupName(exampleResourceGroup.name())
                .serverName(exampleServer.name())
                .subnetId(exampleSubnet.id())
                .build());
    
            var exampleFirewallRule = new FirewallRule("exampleFirewallRule", FirewallRuleArgs.builder()        
                .resourceGroupName(exampleResourceGroup.name())
                .serverName(exampleServer.name())
                .startIpAddress("0.0.0.0")
                .endIpAddress("0.0.0.0")
                .build());
    
            var exampleAccount = new Account("exampleAccount", AccountArgs.builder()        
                .resourceGroupName(exampleResourceGroup.name())
                .location(exampleResourceGroup.location())
                .accountTier("Standard")
                .accountReplicationType("LRS")
                .accountKind("StorageV2")
                .allowNestedItemsToBePublic(false)
                .networkRules(AccountNetworkRulesArgs.builder()
                    .defaultAction("Deny")
                    .ipRules("127.0.0.1")
                    .virtualNetworkSubnetIds(exampleSubnet.id())
                    .bypasses("AzureServices")
                    .build())
                .identity(AccountIdentityArgs.builder()
                    .type("SystemAssigned")
                    .build())
                .build());
    
            var exampleServerMicrosoftSupportAuditingPolicy = new ServerMicrosoftSupportAuditingPolicy("exampleServerMicrosoftSupportAuditingPolicy", ServerMicrosoftSupportAuditingPolicyArgs.builder()        
                .blobStorageEndpoint(exampleAccount.primaryBlobEndpoint())
                .serverId(exampleServer.id())
                .logMonitoringEnabled(false)
                .storageAccountSubscriptionId(azurerm_subscription.primary().subscription_id())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(                
                        exampleAssignment,
                        exampleAccount)
                    .build());
    
        }
    }
    
    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_nested_items_to_be_public=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_microsoft_support_auditing_policy = azure.mssql.ServerMicrosoftSupportAuditingPolicy("exampleServerMicrosoftSupportAuditingPolicy",
        blob_storage_endpoint=example_account.primary_blob_endpoint,
        server_id=example_server.id,
        log_monitoring_enabled=False,
        storage_account_subscription_id=azurerm_subscription["primary"]["subscription_id"],
        opts=pulumi.ResourceOptions(depends_on=[
                example_assignment,
                example_account,
            ]))
    
    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",
        allowNestedItemsToBePublic: false,
        networkRules: {
            defaultAction: "Deny",
            ipRules: ["127.0.0.1"],
            virtualNetworkSubnetIds: [exampleSubnet.id],
            bypasses: ["AzureServices"],
        },
        identity: {
            type: "SystemAssigned",
        },
    });
    const exampleServerMicrosoftSupportAuditingPolicy = new azure.mssql.ServerMicrosoftSupportAuditingPolicy("exampleServerMicrosoftSupportAuditingPolicy", {
        blobStorageEndpoint: exampleAccount.primaryBlobEndpoint,
        serverId: exampleServer.id,
        logMonitoringEnabled: false,
        storageAccountSubscriptionId: azurerm_subscription.primary.subscription_id,
    }, {
        dependsOn: [
            exampleAssignment,
            exampleAccount,
        ],
    });
    
    resources:
      exampleResourceGroup:
        type: azure:core:ResourceGroup
        properties:
          location: West Europe
      exampleVirtualNetwork:
        type: azure:network:VirtualNetwork
        properties:
          addressSpaces:
            - 10.0.0.0/16
          location: ${exampleResourceGroup.location}
          resourceGroupName: ${exampleResourceGroup.name}
      exampleSubnet:
        type: azure:network:Subnet
        properties:
          resourceGroupName: ${exampleResourceGroup.name}
          virtualNetworkName: ${exampleVirtualNetwork.name}
          addressPrefixes:
            - 10.0.2.0/24
          serviceEndpoints:
            - Microsoft.Sql
            - Microsoft.Storage
          enforcePrivateLinkEndpointNetworkPolicies: true
      exampleAssignment:
        type: azure:authorization:Assignment
        properties:
          scope: ${primary.id}
          roleDefinitionName: Storage Blob Data Contributor
          principalId: ${exampleServer.identity.principalId}
      exampleServer:
        type: azure:mssql:Server
        properties:
          resourceGroupName: ${exampleResourceGroup.name}
          location: ${exampleResourceGroup.location}
          version: '12.0'
          administratorLogin: missadministrator
          administratorLoginPassword: AdminPassword123!
          minimumTlsVersion: '1.2'
          identity:
            type: SystemAssigned
      sqlvnetrule:
        type: azure:sql:VirtualNetworkRule
        properties:
          resourceGroupName: ${exampleResourceGroup.name}
          serverName: ${exampleServer.name}
          subnetId: ${exampleSubnet.id}
      exampleFirewallRule:
        type: azure:sql:FirewallRule
        properties:
          resourceGroupName: ${exampleResourceGroup.name}
          serverName: ${exampleServer.name}
          startIpAddress: 0.0.0.0
          endIpAddress: 0.0.0.0
      exampleAccount:
        type: azure:storage:Account
        properties:
          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
        properties:
          blobStorageEndpoint: ${exampleAccount.primaryBlobEndpoint}
          serverId: ${exampleServer.id}
          logMonitoringEnabled: false
          storageAccountSubscriptionId: ${azurerm_subscription.primary.subscription_id}
        options:
          dependson:
            - ${exampleAssignment}
            - ${exampleAccount}
    variables:
      primary:
        fn::invoke:
          Function: azure:core:getSubscription
          Arguments: {}
      exampleClientConfig:
        fn::invoke:
          Function: azure:core:getClientConfig
          Arguments: {}
    

    Create ServerMicrosoftSupportAuditingPolicy Resource

    new ServerMicrosoftSupportAuditingPolicy(name: string, args: ServerMicrosoftSupportAuditingPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def ServerMicrosoftSupportAuditingPolicy(resource_name: 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)
    @overload
    def ServerMicrosoftSupportAuditingPolicy(resource_name: str,
                                             args: ServerMicrosoftSupportAuditingPolicyArgs,
                                             opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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

    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.

    BlobStorageEndpoint string

    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 true and false. Defaults to true.

    ->NOTE: If enabled is true, blob_storage_endpoint or log_monitoring_enabled are required.

    LogMonitoringEnabled bool

    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.

    StorageAccountAccessKey string

    The access key to use for the auditing storage account.

    StorageAccountSubscriptionId string

    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.

    BlobStorageEndpoint string

    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 true and false. Defaults to true.

    ->NOTE: If enabled is true, blob_storage_endpoint or log_monitoring_enabled are required.

    LogMonitoringEnabled bool

    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.

    StorageAccountAccessKey string

    The access key to use for the auditing storage account.

    StorageAccountSubscriptionId string

    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.

    blobStorageEndpoint String

    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 true and false. Defaults to true.

    ->NOTE: If enabled is true, blob_storage_endpoint or log_monitoring_enabled are required.

    logMonitoringEnabled Boolean

    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.

    storageAccountAccessKey String

    The access key to use for the auditing storage account.

    storageAccountSubscriptionId String

    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.

    blobStorageEndpoint string

    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 true and false. Defaults to true.

    ->NOTE: If enabled is true, blob_storage_endpoint or log_monitoring_enabled are required.

    logMonitoringEnabled boolean

    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.

    storageAccountAccessKey string

    The access key to use for the auditing storage account.

    storageAccountSubscriptionId string

    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_endpoint str

    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 true and false. Defaults to true.

    ->NOTE: If enabled is true, blob_storage_endpoint or log_monitoring_enabled are required.

    log_monitoring_enabled bool

    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_access_key str

    The access key to use for the auditing storage account.

    storage_account_subscription_id str

    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.

    blobStorageEndpoint String

    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 true and false. Defaults to true.

    ->NOTE: If enabled is true, blob_storage_endpoint or log_monitoring_enabled are required.

    logMonitoringEnabled Boolean

    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.

    storageAccountAccessKey String

    The access key to use for the auditing storage account.

    storageAccountSubscriptionId String

    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) -> ServerMicrosoftSupportAuditingPolicy
    func 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)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    BlobStorageEndpoint string

    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 true and false. Defaults to true.

    ->NOTE: If enabled is true, blob_storage_endpoint or log_monitoring_enabled are required.

    LogMonitoringEnabled bool

    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.

    StorageAccountAccessKey string

    The access key to use for the auditing storage account.

    StorageAccountSubscriptionId string

    The ID of the Subscription containing the Storage Account.

    BlobStorageEndpoint string

    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 true and false. Defaults to true.

    ->NOTE: If enabled is true, blob_storage_endpoint or log_monitoring_enabled are required.

    LogMonitoringEnabled bool

    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.

    StorageAccountAccessKey string

    The access key to use for the auditing storage account.

    StorageAccountSubscriptionId string

    The ID of the Subscription containing the Storage Account.

    blobStorageEndpoint String

    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 true and false. Defaults to true.

    ->NOTE: If enabled is true, blob_storage_endpoint or log_monitoring_enabled are required.

    logMonitoringEnabled Boolean

    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.

    storageAccountAccessKey String

    The access key to use for the auditing storage account.

    storageAccountSubscriptionId String

    The ID of the Subscription containing the Storage Account.

    blobStorageEndpoint string

    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 true and false. Defaults to true.

    ->NOTE: If enabled is true, blob_storage_endpoint or log_monitoring_enabled are required.

    logMonitoringEnabled boolean

    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.

    storageAccountAccessKey string

    The access key to use for the auditing storage account.

    storageAccountSubscriptionId string

    The ID of the Subscription containing the Storage Account.

    blob_storage_endpoint str

    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 true and false. Defaults to true.

    ->NOTE: If enabled is true, blob_storage_endpoint or log_monitoring_enabled are required.

    log_monitoring_enabled bool

    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_access_key str

    The access key to use for the auditing storage account.

    storage_account_subscription_id str

    The ID of the Subscription containing the Storage Account.

    blobStorageEndpoint String

    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 true and false. Defaults to true.

    ->NOTE: If enabled is true, blob_storage_endpoint or log_monitoring_enabled are required.

    logMonitoringEnabled Boolean

    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.

    storageAccountAccessKey String

    The access key to use for the auditing storage account.

    storageAccountSubscriptionId String

    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
    

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the azurerm Terraform Provider.

    azure logo

    We recommend using Azure Native.

    Azure Classic v5.49.0 published on Tuesday, Aug 29, 2023 by Pulumi