1. Packages
  2. Packages
  3. Azure Classic
  4. API Docs
  5. datalake
  6. StoreFirewallRule

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi
azure logo

We recommend using Azure Native.

Viewing docs for Azure v4.42.0 (Older version)
published on Monday, Mar 9, 2026 by Pulumi

    Manages a Azure Data Lake Store Firewall Rule.

    Note: This resoruce manages an Azure Data Lake Storage Gen1, previously known as Azure Data Lake Store.

    Example Usage

    using Pulumi;
    using Azure = Pulumi.Azure;
    
    class MyStack : Stack
    {
        public MyStack()
        {
            var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
            {
                Location = "West Europe",
            });
            var exampleStore = new Azure.DataLake.Store("exampleStore", new Azure.DataLake.StoreArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                Location = exampleResourceGroup.Location,
            });
            var exampleStoreFirewallRule = new Azure.DataLake.StoreFirewallRule("exampleStoreFirewallRule", new Azure.DataLake.StoreFirewallRuleArgs
            {
                AccountName = exampleStore.Name,
                ResourceGroupName = exampleResourceGroup.Name,
                StartIpAddress = "1.2.3.4",
                EndIpAddress = "2.3.4.5",
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/datalake"
    	"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
    		}
    		exampleStore, err := datalake.NewStore(ctx, "exampleStore", &datalake.StoreArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			Location:          exampleResourceGroup.Location,
    		})
    		if err != nil {
    			return err
    		}
    		_, err = datalake.NewStoreFirewallRule(ctx, "exampleStoreFirewallRule", &datalake.StoreFirewallRuleArgs{
    			AccountName:       exampleStore.Name,
    			ResourceGroupName: exampleResourceGroup.Name,
    			StartIpAddress:    pulumi.String("1.2.3.4"),
    			EndIpAddress:      pulumi.String("2.3.4.5"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    

    Example coming soon!

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
    const exampleStore = new azure.datalake.Store("exampleStore", {
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
    });
    const exampleStoreFirewallRule = new azure.datalake.StoreFirewallRule("exampleStoreFirewallRule", {
        accountName: exampleStore.name,
        resourceGroupName: exampleResourceGroup.name,
        startIpAddress: "1.2.3.4",
        endIpAddress: "2.3.4.5",
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_store = azure.datalake.Store("exampleStore",
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location)
    example_store_firewall_rule = azure.datalake.StoreFirewallRule("exampleStoreFirewallRule",
        account_name=example_store.name,
        resource_group_name=example_resource_group.name,
        start_ip_address="1.2.3.4",
        end_ip_address="2.3.4.5")
    

    Example coming soon!

    Create StoreFirewallRule Resource

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

    Constructor syntax

    new StoreFirewallRule(name: string, args: StoreFirewallRuleArgs, opts?: CustomResourceOptions);
    @overload
    def StoreFirewallRule(resource_name: str,
                          args: StoreFirewallRuleArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def StoreFirewallRule(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          account_name: Optional[str] = None,
                          end_ip_address: Optional[str] = None,
                          resource_group_name: Optional[str] = None,
                          start_ip_address: Optional[str] = None,
                          name: Optional[str] = None)
    func NewStoreFirewallRule(ctx *Context, name string, args StoreFirewallRuleArgs, opts ...ResourceOption) (*StoreFirewallRule, error)
    public StoreFirewallRule(string name, StoreFirewallRuleArgs args, CustomResourceOptions? opts = null)
    public StoreFirewallRule(String name, StoreFirewallRuleArgs args)
    public StoreFirewallRule(String name, StoreFirewallRuleArgs args, CustomResourceOptions options)
    
    type: azure:datalake:StoreFirewallRule
    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 StoreFirewallRuleArgs
    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 StoreFirewallRuleArgs
    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 StoreFirewallRuleArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StoreFirewallRuleArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StoreFirewallRuleArgs
    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 storeFirewallRuleResource = new Azure.DataLake.StoreFirewallRule("storeFirewallRuleResource", new()
    {
        AccountName = "string",
        EndIpAddress = "string",
        ResourceGroupName = "string",
        StartIpAddress = "string",
        Name = "string",
    });
    
    example, err := datalake.NewStoreFirewallRule(ctx, "storeFirewallRuleResource", &datalake.StoreFirewallRuleArgs{
    	AccountName:       pulumi.String("string"),
    	EndIpAddress:      pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	StartIpAddress:    pulumi.String("string"),
    	Name:              pulumi.String("string"),
    })
    
    var storeFirewallRuleResource = new StoreFirewallRule("storeFirewallRuleResource", StoreFirewallRuleArgs.builder()
        .accountName("string")
        .endIpAddress("string")
        .resourceGroupName("string")
        .startIpAddress("string")
        .name("string")
        .build());
    
    store_firewall_rule_resource = azure.datalake.StoreFirewallRule("storeFirewallRuleResource",
        account_name="string",
        end_ip_address="string",
        resource_group_name="string",
        start_ip_address="string",
        name="string")
    
    const storeFirewallRuleResource = new azure.datalake.StoreFirewallRule("storeFirewallRuleResource", {
        accountName: "string",
        endIpAddress: "string",
        resourceGroupName: "string",
        startIpAddress: "string",
        name: "string",
    });
    
    type: azure:datalake:StoreFirewallRule
    properties:
        accountName: string
        endIpAddress: string
        name: string
        resourceGroupName: string
        startIpAddress: string
    

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

    AccountName string
    Specifies the name of the Data Lake Store for which the Firewall Rule should take effect.
    EndIpAddress string
    The End IP Address for the firewall rule.
    ResourceGroupName string
    The name of the resource group in which to create the Data Lake Store.
    StartIpAddress string
    The Start IP address for the firewall rule.
    Name string
    Specifies the name of the Data Lake Store. Changing this forces a new resource to be created. Has to be between 3 to 24 characters.
    AccountName string
    Specifies the name of the Data Lake Store for which the Firewall Rule should take effect.
    EndIpAddress string
    The End IP Address for the firewall rule.
    ResourceGroupName string
    The name of the resource group in which to create the Data Lake Store.
    StartIpAddress string
    The Start IP address for the firewall rule.
    Name string
    Specifies the name of the Data Lake Store. Changing this forces a new resource to be created. Has to be between 3 to 24 characters.
    accountName String
    Specifies the name of the Data Lake Store for which the Firewall Rule should take effect.
    endIpAddress String
    The End IP Address for the firewall rule.
    resourceGroupName String
    The name of the resource group in which to create the Data Lake Store.
    startIpAddress String
    The Start IP address for the firewall rule.
    name String
    Specifies the name of the Data Lake Store. Changing this forces a new resource to be created. Has to be between 3 to 24 characters.
    accountName string
    Specifies the name of the Data Lake Store for which the Firewall Rule should take effect.
    endIpAddress string
    The End IP Address for the firewall rule.
    resourceGroupName string
    The name of the resource group in which to create the Data Lake Store.
    startIpAddress string
    The Start IP address for the firewall rule.
    name string
    Specifies the name of the Data Lake Store. Changing this forces a new resource to be created. Has to be between 3 to 24 characters.
    account_name str
    Specifies the name of the Data Lake Store for which the Firewall Rule should take effect.
    end_ip_address str
    The End IP Address for the firewall rule.
    resource_group_name str
    The name of the resource group in which to create the Data Lake Store.
    start_ip_address str
    The Start IP address for the firewall rule.
    name str
    Specifies the name of the Data Lake Store. Changing this forces a new resource to be created. Has to be between 3 to 24 characters.
    accountName String
    Specifies the name of the Data Lake Store for which the Firewall Rule should take effect.
    endIpAddress String
    The End IP Address for the firewall rule.
    resourceGroupName String
    The name of the resource group in which to create the Data Lake Store.
    startIpAddress String
    The Start IP address for the firewall rule.
    name String
    Specifies the name of the Data Lake Store. Changing this forces a new resource to be created. Has to be between 3 to 24 characters.

    Outputs

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

    Get an existing StoreFirewallRule 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?: StoreFirewallRuleState, opts?: CustomResourceOptions): StoreFirewallRule
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            account_name: Optional[str] = None,
            end_ip_address: Optional[str] = None,
            name: Optional[str] = None,
            resource_group_name: Optional[str] = None,
            start_ip_address: Optional[str] = None) -> StoreFirewallRule
    func GetStoreFirewallRule(ctx *Context, name string, id IDInput, state *StoreFirewallRuleState, opts ...ResourceOption) (*StoreFirewallRule, error)
    public static StoreFirewallRule Get(string name, Input<string> id, StoreFirewallRuleState? state, CustomResourceOptions? opts = null)
    public static StoreFirewallRule get(String name, Output<String> id, StoreFirewallRuleState state, CustomResourceOptions options)
    resources:  _:    type: azure:datalake:StoreFirewallRule    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.
    The following state arguments are supported:
    AccountName string
    Specifies the name of the Data Lake Store for which the Firewall Rule should take effect.
    EndIpAddress string
    The End IP Address for the firewall rule.
    Name string
    Specifies the name of the Data Lake Store. Changing this forces a new resource to be created. Has to be between 3 to 24 characters.
    ResourceGroupName string
    The name of the resource group in which to create the Data Lake Store.
    StartIpAddress string
    The Start IP address for the firewall rule.
    AccountName string
    Specifies the name of the Data Lake Store for which the Firewall Rule should take effect.
    EndIpAddress string
    The End IP Address for the firewall rule.
    Name string
    Specifies the name of the Data Lake Store. Changing this forces a new resource to be created. Has to be between 3 to 24 characters.
    ResourceGroupName string
    The name of the resource group in which to create the Data Lake Store.
    StartIpAddress string
    The Start IP address for the firewall rule.
    accountName String
    Specifies the name of the Data Lake Store for which the Firewall Rule should take effect.
    endIpAddress String
    The End IP Address for the firewall rule.
    name String
    Specifies the name of the Data Lake Store. Changing this forces a new resource to be created. Has to be between 3 to 24 characters.
    resourceGroupName String
    The name of the resource group in which to create the Data Lake Store.
    startIpAddress String
    The Start IP address for the firewall rule.
    accountName string
    Specifies the name of the Data Lake Store for which the Firewall Rule should take effect.
    endIpAddress string
    The End IP Address for the firewall rule.
    name string
    Specifies the name of the Data Lake Store. Changing this forces a new resource to be created. Has to be between 3 to 24 characters.
    resourceGroupName string
    The name of the resource group in which to create the Data Lake Store.
    startIpAddress string
    The Start IP address for the firewall rule.
    account_name str
    Specifies the name of the Data Lake Store for which the Firewall Rule should take effect.
    end_ip_address str
    The End IP Address for the firewall rule.
    name str
    Specifies the name of the Data Lake Store. Changing this forces a new resource to be created. Has to be between 3 to 24 characters.
    resource_group_name str
    The name of the resource group in which to create the Data Lake Store.
    start_ip_address str
    The Start IP address for the firewall rule.
    accountName String
    Specifies the name of the Data Lake Store for which the Firewall Rule should take effect.
    endIpAddress String
    The End IP Address for the firewall rule.
    name String
    Specifies the name of the Data Lake Store. Changing this forces a new resource to be created. Has to be between 3 to 24 characters.
    resourceGroupName String
    The name of the resource group in which to create the Data Lake Store.
    startIpAddress String
    The Start IP address for the firewall rule.

    Import

    Data Lake Store Firewall Rules can be imported using the resource id, e.g.

     $ pulumi import azure:datalake/storeFirewallRule:StoreFirewallRule rule1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.DataLakeStore/accounts/mydatalakeaccount/firewallRules/rule1
    

    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.

    Viewing docs for Azure v4.42.0 (Older version)
    published on Monday, Mar 9, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.