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

We recommend using Azure Native.

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

azure.mssql.OutboundFirewallRule

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

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

    Allows you to manage an Azure SQL Outbound Firewall Rule.

    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 = "4dm1n157r470r",
            AdministratorLoginPassword = "4-v3ry-53cr37-p455w0rd",
            OutboundNetworkRestrictionEnabled = true,
        });
    
        var exampleOutboundFirewallRule = new Azure.MSSql.OutboundFirewallRule("exampleOutboundFirewallRule", new()
        {
            ServerId = exampleServer.Id,
        });
    
    });
    
    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/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("4dm1n157r470r"),
    			AdministratorLoginPassword:        pulumi.String("4-v3ry-53cr37-p455w0rd"),
    			OutboundNetworkRestrictionEnabled: pulumi.Bool(true),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = mssql.NewOutboundFirewallRule(ctx, "exampleOutboundFirewallRule", &mssql.OutboundFirewallRuleArgs{
    			ServerId: exampleServer.ID(),
    		})
    		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.mssql.OutboundFirewallRule;
    import com.pulumi.azure.mssql.OutboundFirewallRuleArgs;
    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("4dm1n157r470r")
                .administratorLoginPassword("4-v3ry-53cr37-p455w0rd")
                .outboundNetworkRestrictionEnabled(true)
                .build());
    
            var exampleOutboundFirewallRule = new OutboundFirewallRule("exampleOutboundFirewallRule", OutboundFirewallRuleArgs.builder()        
                .serverId(exampleServer.id())
                .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="4dm1n157r470r",
        administrator_login_password="4-v3ry-53cr37-p455w0rd",
        outbound_network_restriction_enabled=True)
    example_outbound_firewall_rule = azure.mssql.OutboundFirewallRule("exampleOutboundFirewallRule", server_id=example_server.id)
    
    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: "4dm1n157r470r",
        administratorLoginPassword: "4-v3ry-53cr37-p455w0rd",
        outboundNetworkRestrictionEnabled: true,
    });
    const exampleOutboundFirewallRule = new azure.mssql.OutboundFirewallRule("exampleOutboundFirewallRule", {serverId: exampleServer.id});
    
    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: 4dm1n157r470r
          administratorLoginPassword: 4-v3ry-53cr37-p455w0rd
          outboundNetworkRestrictionEnabled: true
      exampleOutboundFirewallRule:
        type: azure:mssql:OutboundFirewallRule
        properties:
          serverId: ${exampleServer.id}
    

    Create OutboundFirewallRule Resource

    new OutboundFirewallRule(name: string, args: OutboundFirewallRuleArgs, opts?: CustomResourceOptions);
    @overload
    def OutboundFirewallRule(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             name: Optional[str] = None,
                             server_id: Optional[str] = None)
    @overload
    def OutboundFirewallRule(resource_name: str,
                             args: OutboundFirewallRuleArgs,
                             opts: Optional[ResourceOptions] = None)
    func NewOutboundFirewallRule(ctx *Context, name string, args OutboundFirewallRuleArgs, opts ...ResourceOption) (*OutboundFirewallRule, error)
    public OutboundFirewallRule(string name, OutboundFirewallRuleArgs args, CustomResourceOptions? opts = null)
    public OutboundFirewallRule(String name, OutboundFirewallRuleArgs args)
    public OutboundFirewallRule(String name, OutboundFirewallRuleArgs args, CustomResourceOptions options)
    
    type: azure:mssql:OutboundFirewallRule
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args OutboundFirewallRuleArgs
    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 OutboundFirewallRuleArgs
    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 OutboundFirewallRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OutboundFirewallRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OutboundFirewallRuleArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    OutboundFirewallRule 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 OutboundFirewallRule resource accepts the following input properties:

    ServerId string

    The resource ID of the SQL Server on which to create the Outbound Firewall Rule. Changing this forces a new resource to be created.

    Name string

    The name of the outbound firewall rule. This should be a FQDN. Changing this forces a new resource to be created.

    ServerId string

    The resource ID of the SQL Server on which to create the Outbound Firewall Rule. Changing this forces a new resource to be created.

    Name string

    The name of the outbound firewall rule. This should be a FQDN. Changing this forces a new resource to be created.

    serverId String

    The resource ID of the SQL Server on which to create the Outbound Firewall Rule. Changing this forces a new resource to be created.

    name String

    The name of the outbound firewall rule. This should be a FQDN. Changing this forces a new resource to be created.

    serverId string

    The resource ID of the SQL Server on which to create the Outbound Firewall Rule. Changing this forces a new resource to be created.

    name string

    The name of the outbound firewall rule. This should be a FQDN. Changing this forces a new resource to be created.

    server_id str

    The resource ID of the SQL Server on which to create the Outbound Firewall Rule. Changing this forces a new resource to be created.

    name str

    The name of the outbound firewall rule. This should be a FQDN. Changing this forces a new resource to be created.

    serverId String

    The resource ID of the SQL Server on which to create the Outbound Firewall Rule. Changing this forces a new resource to be created.

    name String

    The name of the outbound firewall rule. This should be a FQDN. Changing this forces a new resource to be created.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the OutboundFirewallRule 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 OutboundFirewallRule Resource

    Get an existing OutboundFirewallRule 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?: OutboundFirewallRuleState, opts?: CustomResourceOptions): OutboundFirewallRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            name: Optional[str] = None,
            server_id: Optional[str] = None) -> OutboundFirewallRule
    func GetOutboundFirewallRule(ctx *Context, name string, id IDInput, state *OutboundFirewallRuleState, opts ...ResourceOption) (*OutboundFirewallRule, error)
    public static OutboundFirewallRule Get(string name, Input<string> id, OutboundFirewallRuleState? state, CustomResourceOptions? opts = null)
    public static OutboundFirewallRule get(String name, Output<String> id, OutboundFirewallRuleState 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:
    Name string

    The name of the outbound firewall rule. This should be a FQDN. Changing this forces a new resource to be created.

    ServerId string

    The resource ID of the SQL Server on which to create the Outbound Firewall Rule. Changing this forces a new resource to be created.

    Name string

    The name of the outbound firewall rule. This should be a FQDN. Changing this forces a new resource to be created.

    ServerId string

    The resource ID of the SQL Server on which to create the Outbound Firewall Rule. Changing this forces a new resource to be created.

    name String

    The name of the outbound firewall rule. This should be a FQDN. Changing this forces a new resource to be created.

    serverId String

    The resource ID of the SQL Server on which to create the Outbound Firewall Rule. Changing this forces a new resource to be created.

    name string

    The name of the outbound firewall rule. This should be a FQDN. Changing this forces a new resource to be created.

    serverId string

    The resource ID of the SQL Server on which to create the Outbound Firewall Rule. Changing this forces a new resource to be created.

    name str

    The name of the outbound firewall rule. This should be a FQDN. Changing this forces a new resource to be created.

    server_id str

    The resource ID of the SQL Server on which to create the Outbound Firewall Rule. Changing this forces a new resource to be created.

    name String

    The name of the outbound firewall rule. This should be a FQDN. Changing this forces a new resource to be created.

    serverId String

    The resource ID of the SQL Server on which to create the Outbound Firewall Rule. Changing this forces a new resource to be created.

    Import

    SQL Outbound Firewall Rules can be imported using the resource id, e.g.

     $ pulumi import azure:mssql/outboundFirewallRule:OutboundFirewallRule rule1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myresourcegroup/providers/Microsoft.Sql/servers/myserver/outboundFirewallRules/fqdn1
    

    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