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

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

azure.mssql.OutboundFirewallRule

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi

    Allows you to manage an Azure SQL Outbound Firewall Rule.

    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: "mysqlserver",
        resourceGroupName: example.name,
        location: example.location,
        version: "12.0",
        administratorLogin: "4dm1n157r470r",
        administratorLoginPassword: "4-v3ry-53cr37-p455w0rd",
        outboundNetworkRestrictionEnabled: true,
    });
    const exampleOutboundFirewallRule = new azure.mssql.OutboundFirewallRule("example", {
        name: "sqlexamplefdqn.database.windows.net",
        serverId: exampleServer.id,
    });
    
    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="mysqlserver",
        resource_group_name=example.name,
        location=example.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("example",
        name="sqlexamplefdqn.database.windows.net",
        server_id=example_server.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 {
    		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("mysqlserver"),
    			ResourceGroupName:                 example.Name,
    			Location:                          example.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, "example", &mssql.OutboundFirewallRuleArgs{
    			Name:     pulumi.String("sqlexamplefdqn.database.windows.net"),
    			ServerId: exampleServer.ID(),
    		})
    		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 = "mysqlserver",
            ResourceGroupName = example.Name,
            Location = example.Location,
            Version = "12.0",
            AdministratorLogin = "4dm1n157r470r",
            AdministratorLoginPassword = "4-v3ry-53cr37-p455w0rd",
            OutboundNetworkRestrictionEnabled = true,
        });
    
        var exampleOutboundFirewallRule = new Azure.MSSql.OutboundFirewallRule("example", new()
        {
            Name = "sqlexamplefdqn.database.windows.net",
            ServerId = exampleServer.Id,
        });
    
    });
    
    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 example = new ResourceGroup("example", ResourceGroupArgs.builder()        
                .name("example-resources")
                .location("West Europe")
                .build());
    
            var exampleServer = new Server("exampleServer", ServerArgs.builder()        
                .name("mysqlserver")
                .resourceGroupName(example.name())
                .location(example.location())
                .version("12.0")
                .administratorLogin("4dm1n157r470r")
                .administratorLoginPassword("4-v3ry-53cr37-p455w0rd")
                .outboundNetworkRestrictionEnabled(true)
                .build());
    
            var exampleOutboundFirewallRule = new OutboundFirewallRule("exampleOutboundFirewallRule", OutboundFirewallRuleArgs.builder()        
                .name("sqlexamplefdqn.database.windows.net")
                .serverId(exampleServer.id())
                .build());
    
        }
    }
    
    resources:
      example:
        type: azure:core:ResourceGroup
        properties:
          name: example-resources
          location: West Europe
      exampleServer:
        type: azure:mssql:Server
        name: example
        properties:
          name: mysqlserver
          resourceGroupName: ${example.name}
          location: ${example.location}
          version: '12.0'
          administratorLogin: 4dm1n157r470r
          administratorLoginPassword: 4-v3ry-53cr37-p455w0rd
          outboundNetworkRestrictionEnabled: true
      exampleOutboundFirewallRule:
        type: azure:mssql:OutboundFirewallRule
        name: example
        properties:
          name: sqlexamplefdqn.database.windows.net
          serverId: ${exampleServer.id}
    

    Create OutboundFirewallRule Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

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

    Parameters

    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.

    Example

    The following reference example uses placeholder values for all input properties.

    var outboundFirewallRuleResource = new Azure.MSSql.OutboundFirewallRule("outboundFirewallRuleResource", new()
    {
        ServerId = "string",
        Name = "string",
    });
    
    example, err := mssql.NewOutboundFirewallRule(ctx, "outboundFirewallRuleResource", &mssql.OutboundFirewallRuleArgs{
    	ServerId: pulumi.String("string"),
    	Name:     pulumi.String("string"),
    })
    
    var outboundFirewallRuleResource = new OutboundFirewallRule("outboundFirewallRuleResource", OutboundFirewallRuleArgs.builder()        
        .serverId("string")
        .name("string")
        .build());
    
    outbound_firewall_rule_resource = azure.mssql.OutboundFirewallRule("outboundFirewallRuleResource",
        server_id="string",
        name="string")
    
    const outboundFirewallRuleResource = new azure.mssql.OutboundFirewallRule("outboundFirewallRuleResource", {
        serverId: "string",
        name: "string",
    });
    
    type: azure:mssql:OutboundFirewallRule
    properties:
        name: string
        serverId: string
    

    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
    

    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 azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure Classic v5.72.0 published on Monday, Apr 15, 2024 by Pulumi