1. Packages
  2. Azure Classic
  3. API Docs
  4. network
  5. NetworkSecurityRule

We recommend using Azure Native.

Azure v6.22.0 published on Tuesday, Apr 1, 2025 by Pulumi

azure.network.NetworkSecurityRule

Explore with Pulumi AI

Manages a Network Security Rule.

NOTE on Network Security Groups and Network Security Rules: This provider currently provides both a standalone Network Security Rule resource, and allows for Network Security Rules to be defined in-line within the Network Security Group resource. At this time you cannot use a Network Security Group with in-line Network Security Rules in conjunction with any Network Security Rule resources. Doing so will cause a conflict of rule settings and will overwrite rules.

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 exampleNetworkSecurityGroup = new azure.network.NetworkSecurityGroup("example", {
    name: "acceptanceTestSecurityGroup1",
    location: example.location,
    resourceGroupName: example.name,
});
const exampleNetworkSecurityRule = new azure.network.NetworkSecurityRule("example", {
    name: "test123",
    priority: 100,
    direction: "Outbound",
    access: "Allow",
    protocol: "Tcp",
    sourcePortRange: "*",
    destinationPortRange: "*",
    sourceAddressPrefix: "*",
    destinationAddressPrefix: "*",
    resourceGroupName: example.name,
    networkSecurityGroupName: exampleNetworkSecurityGroup.name,
});
Copy
import pulumi
import pulumi_azure as azure

example = azure.core.ResourceGroup("example",
    name="example-resources",
    location="West Europe")
example_network_security_group = azure.network.NetworkSecurityGroup("example",
    name="acceptanceTestSecurityGroup1",
    location=example.location,
    resource_group_name=example.name)
example_network_security_rule = azure.network.NetworkSecurityRule("example",
    name="test123",
    priority=100,
    direction="Outbound",
    access="Allow",
    protocol="Tcp",
    source_port_range="*",
    destination_port_range="*",
    source_address_prefix="*",
    destination_address_prefix="*",
    resource_group_name=example.name,
    network_security_group_name=example_network_security_group.name)
Copy
package main

import (
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/network"
	"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
		}
		exampleNetworkSecurityGroup, err := network.NewNetworkSecurityGroup(ctx, "example", &network.NetworkSecurityGroupArgs{
			Name:              pulumi.String("acceptanceTestSecurityGroup1"),
			Location:          example.Location,
			ResourceGroupName: example.Name,
		})
		if err != nil {
			return err
		}
		_, err = network.NewNetworkSecurityRule(ctx, "example", &network.NetworkSecurityRuleArgs{
			Name:                     pulumi.String("test123"),
			Priority:                 pulumi.Int(100),
			Direction:                pulumi.String("Outbound"),
			Access:                   pulumi.String("Allow"),
			Protocol:                 pulumi.String("Tcp"),
			SourcePortRange:          pulumi.String("*"),
			DestinationPortRange:     pulumi.String("*"),
			SourceAddressPrefix:      pulumi.String("*"),
			DestinationAddressPrefix: pulumi.String("*"),
			ResourceGroupName:        example.Name,
			NetworkSecurityGroupName: exampleNetworkSecurityGroup.Name,
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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 exampleNetworkSecurityGroup = new Azure.Network.NetworkSecurityGroup("example", new()
    {
        Name = "acceptanceTestSecurityGroup1",
        Location = example.Location,
        ResourceGroupName = example.Name,
    });

    var exampleNetworkSecurityRule = new Azure.Network.NetworkSecurityRule("example", new()
    {
        Name = "test123",
        Priority = 100,
        Direction = "Outbound",
        Access = "Allow",
        Protocol = "Tcp",
        SourcePortRange = "*",
        DestinationPortRange = "*",
        SourceAddressPrefix = "*",
        DestinationAddressPrefix = "*",
        ResourceGroupName = example.Name,
        NetworkSecurityGroupName = exampleNetworkSecurityGroup.Name,
    });

});
Copy
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.network.NetworkSecurityGroup;
import com.pulumi.azure.network.NetworkSecurityGroupArgs;
import com.pulumi.azure.network.NetworkSecurityRule;
import com.pulumi.azure.network.NetworkSecurityRuleArgs;
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 exampleNetworkSecurityGroup = new NetworkSecurityGroup("exampleNetworkSecurityGroup", NetworkSecurityGroupArgs.builder()
            .name("acceptanceTestSecurityGroup1")
            .location(example.location())
            .resourceGroupName(example.name())
            .build());

        var exampleNetworkSecurityRule = new NetworkSecurityRule("exampleNetworkSecurityRule", NetworkSecurityRuleArgs.builder()
            .name("test123")
            .priority(100)
            .direction("Outbound")
            .access("Allow")
            .protocol("Tcp")
            .sourcePortRange("*")
            .destinationPortRange("*")
            .sourceAddressPrefix("*")
            .destinationAddressPrefix("*")
            .resourceGroupName(example.name())
            .networkSecurityGroupName(exampleNetworkSecurityGroup.name())
            .build());

    }
}
Copy
resources:
  example:
    type: azure:core:ResourceGroup
    properties:
      name: example-resources
      location: West Europe
  exampleNetworkSecurityGroup:
    type: azure:network:NetworkSecurityGroup
    name: example
    properties:
      name: acceptanceTestSecurityGroup1
      location: ${example.location}
      resourceGroupName: ${example.name}
  exampleNetworkSecurityRule:
    type: azure:network:NetworkSecurityRule
    name: example
    properties:
      name: test123
      priority: 100
      direction: Outbound
      access: Allow
      protocol: Tcp
      sourcePortRange: '*'
      destinationPortRange: '*'
      sourceAddressPrefix: '*'
      destinationAddressPrefix: '*'
      resourceGroupName: ${example.name}
      networkSecurityGroupName: ${exampleNetworkSecurityGroup.name}
Copy

Create NetworkSecurityRule Resource

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

Constructor syntax

new NetworkSecurityRule(name: string, args: NetworkSecurityRuleArgs, opts?: CustomResourceOptions);
@overload
def NetworkSecurityRule(resource_name: str,
                        args: NetworkSecurityRuleArgs,
                        opts: Optional[ResourceOptions] = None)

@overload
def NetworkSecurityRule(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        direction: Optional[str] = None,
                        resource_group_name: Optional[str] = None,
                        protocol: Optional[str] = None,
                        priority: Optional[int] = None,
                        access: Optional[str] = None,
                        network_security_group_name: Optional[str] = None,
                        destination_application_security_group_ids: Optional[str] = None,
                        destination_port_ranges: Optional[Sequence[str]] = None,
                        name: Optional[str] = None,
                        destination_port_range: Optional[str] = None,
                        destination_address_prefixes: Optional[Sequence[str]] = None,
                        destination_address_prefix: Optional[str] = None,
                        description: Optional[str] = None,
                        source_address_prefix: Optional[str] = None,
                        source_address_prefixes: Optional[Sequence[str]] = None,
                        source_application_security_group_ids: Optional[str] = None,
                        source_port_range: Optional[str] = None,
                        source_port_ranges: Optional[Sequence[str]] = None)
func NewNetworkSecurityRule(ctx *Context, name string, args NetworkSecurityRuleArgs, opts ...ResourceOption) (*NetworkSecurityRule, error)
public NetworkSecurityRule(string name, NetworkSecurityRuleArgs args, CustomResourceOptions? opts = null)
public NetworkSecurityRule(String name, NetworkSecurityRuleArgs args)
public NetworkSecurityRule(String name, NetworkSecurityRuleArgs args, CustomResourceOptions options)
type: azure:network:NetworkSecurityRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. NetworkSecurityRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. NetworkSecurityRuleArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. NetworkSecurityRuleArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. NetworkSecurityRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. NetworkSecurityRuleArgs
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 networkSecurityRuleResource = new Azure.Network.NetworkSecurityRule("networkSecurityRuleResource", new()
{
    Direction = "string",
    ResourceGroupName = "string",
    Protocol = "string",
    Priority = 0,
    Access = "string",
    NetworkSecurityGroupName = "string",
    DestinationApplicationSecurityGroupIds = "string",
    DestinationPortRanges = new[]
    {
        "string",
    },
    Name = "string",
    DestinationPortRange = "string",
    DestinationAddressPrefixes = new[]
    {
        "string",
    },
    DestinationAddressPrefix = "string",
    Description = "string",
    SourceAddressPrefix = "string",
    SourceAddressPrefixes = new[]
    {
        "string",
    },
    SourceApplicationSecurityGroupIds = "string",
    SourcePortRange = "string",
    SourcePortRanges = new[]
    {
        "string",
    },
});
Copy
example, err := network.NewNetworkSecurityRule(ctx, "networkSecurityRuleResource", &network.NetworkSecurityRuleArgs{
	Direction:                              pulumi.String("string"),
	ResourceGroupName:                      pulumi.String("string"),
	Protocol:                               pulumi.String("string"),
	Priority:                               pulumi.Int(0),
	Access:                                 pulumi.String("string"),
	NetworkSecurityGroupName:               pulumi.String("string"),
	DestinationApplicationSecurityGroupIds: pulumi.String("string"),
	DestinationPortRanges: pulumi.StringArray{
		pulumi.String("string"),
	},
	Name:                 pulumi.String("string"),
	DestinationPortRange: pulumi.String("string"),
	DestinationAddressPrefixes: pulumi.StringArray{
		pulumi.String("string"),
	},
	DestinationAddressPrefix: pulumi.String("string"),
	Description:              pulumi.String("string"),
	SourceAddressPrefix:      pulumi.String("string"),
	SourceAddressPrefixes: pulumi.StringArray{
		pulumi.String("string"),
	},
	SourceApplicationSecurityGroupIds: pulumi.String("string"),
	SourcePortRange:                   pulumi.String("string"),
	SourcePortRanges: pulumi.StringArray{
		pulumi.String("string"),
	},
})
Copy
var networkSecurityRuleResource = new NetworkSecurityRule("networkSecurityRuleResource", NetworkSecurityRuleArgs.builder()
    .direction("string")
    .resourceGroupName("string")
    .protocol("string")
    .priority(0)
    .access("string")
    .networkSecurityGroupName("string")
    .destinationApplicationSecurityGroupIds("string")
    .destinationPortRanges("string")
    .name("string")
    .destinationPortRange("string")
    .destinationAddressPrefixes("string")
    .destinationAddressPrefix("string")
    .description("string")
    .sourceAddressPrefix("string")
    .sourceAddressPrefixes("string")
    .sourceApplicationSecurityGroupIds("string")
    .sourcePortRange("string")
    .sourcePortRanges("string")
    .build());
Copy
network_security_rule_resource = azure.network.NetworkSecurityRule("networkSecurityRuleResource",
    direction="string",
    resource_group_name="string",
    protocol="string",
    priority=0,
    access="string",
    network_security_group_name="string",
    destination_application_security_group_ids="string",
    destination_port_ranges=["string"],
    name="string",
    destination_port_range="string",
    destination_address_prefixes=["string"],
    destination_address_prefix="string",
    description="string",
    source_address_prefix="string",
    source_address_prefixes=["string"],
    source_application_security_group_ids="string",
    source_port_range="string",
    source_port_ranges=["string"])
Copy
const networkSecurityRuleResource = new azure.network.NetworkSecurityRule("networkSecurityRuleResource", {
    direction: "string",
    resourceGroupName: "string",
    protocol: "string",
    priority: 0,
    access: "string",
    networkSecurityGroupName: "string",
    destinationApplicationSecurityGroupIds: "string",
    destinationPortRanges: ["string"],
    name: "string",
    destinationPortRange: "string",
    destinationAddressPrefixes: ["string"],
    destinationAddressPrefix: "string",
    description: "string",
    sourceAddressPrefix: "string",
    sourceAddressPrefixes: ["string"],
    sourceApplicationSecurityGroupIds: "string",
    sourcePortRange: "string",
    sourcePortRanges: ["string"],
});
Copy
type: azure:network:NetworkSecurityRule
properties:
    access: string
    description: string
    destinationAddressPrefix: string
    destinationAddressPrefixes:
        - string
    destinationApplicationSecurityGroupIds: string
    destinationPortRange: string
    destinationPortRanges:
        - string
    direction: string
    name: string
    networkSecurityGroupName: string
    priority: 0
    protocol: string
    resourceGroupName: string
    sourceAddressPrefix: string
    sourceAddressPrefixes:
        - string
    sourceApplicationSecurityGroupIds: string
    sourcePortRange: string
    sourcePortRanges:
        - string
Copy

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

Access This property is required. string
Specifies whether network traffic is allowed or denied. Possible values are Allow and Deny.
Direction This property is required. string
The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are Inbound and Outbound.
NetworkSecurityGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Network Security Group that we want to attach the rule to. Changing this forces a new resource to be created.
Priority This property is required. int
Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
Protocol This property is required. string
Network protocol this rule applies to. Possible values include Tcp, Udp, Icmp, Esp, Ah or * (which matches all).
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group in which to create the Network Security Rule. Changing this forces a new resource to be created.
Description string
A description for this rule. Restricted to 140 characters.
DestinationAddressPrefix string
CIDR or destination IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. Besides, it also supports all available Service Tags like ‘Sql.WestEurope‘, ‘Storage.EastUS‘, etc. You can list the available service tags with the CLI: shell az network list-service-tags --location westcentralus. For further information please see Azure CLI - az network list-service-tags. This is required if destination_address_prefixes is not specified.
DestinationAddressPrefixes List<string>
List of destination address prefixes. Tags may not be used. This is required if destination_address_prefix is not specified.
DestinationApplicationSecurityGroupIds string
A List of destination Application Security Group IDs
DestinationPortRange string
Destination Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if destination_port_ranges is not specified.
DestinationPortRanges List<string>
List of destination ports or port ranges. This is required if destination_port_range is not specified.
Name Changes to this property will trigger replacement. string
The name of the security rule. This needs to be unique across all Rules in the Network Security Group. Changing this forces a new resource to be created.
SourceAddressPrefix string
CIDR or source IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. This is required if source_address_prefixes is not specified.
SourceAddressPrefixes List<string>
List of source address prefixes. Tags may not be used. This is required if source_address_prefix is not specified.
SourceApplicationSecurityGroupIds string
A List of source Application Security Group IDs
SourcePortRange string
Source Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if source_port_ranges is not specified.
SourcePortRanges List<string>
List of source ports or port ranges. This is required if source_port_range is not specified.
Access This property is required. string
Specifies whether network traffic is allowed or denied. Possible values are Allow and Deny.
Direction This property is required. string
The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are Inbound and Outbound.
NetworkSecurityGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Network Security Group that we want to attach the rule to. Changing this forces a new resource to be created.
Priority This property is required. int
Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
Protocol This property is required. string
Network protocol this rule applies to. Possible values include Tcp, Udp, Icmp, Esp, Ah or * (which matches all).
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group in which to create the Network Security Rule. Changing this forces a new resource to be created.
Description string
A description for this rule. Restricted to 140 characters.
DestinationAddressPrefix string
CIDR or destination IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. Besides, it also supports all available Service Tags like ‘Sql.WestEurope‘, ‘Storage.EastUS‘, etc. You can list the available service tags with the CLI: shell az network list-service-tags --location westcentralus. For further information please see Azure CLI - az network list-service-tags. This is required if destination_address_prefixes is not specified.
DestinationAddressPrefixes []string
List of destination address prefixes. Tags may not be used. This is required if destination_address_prefix is not specified.
DestinationApplicationSecurityGroupIds string
A List of destination Application Security Group IDs
DestinationPortRange string
Destination Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if destination_port_ranges is not specified.
DestinationPortRanges []string
List of destination ports or port ranges. This is required if destination_port_range is not specified.
Name Changes to this property will trigger replacement. string
The name of the security rule. This needs to be unique across all Rules in the Network Security Group. Changing this forces a new resource to be created.
SourceAddressPrefix string
CIDR or source IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. This is required if source_address_prefixes is not specified.
SourceAddressPrefixes []string
List of source address prefixes. Tags may not be used. This is required if source_address_prefix is not specified.
SourceApplicationSecurityGroupIds string
A List of source Application Security Group IDs
SourcePortRange string
Source Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if source_port_ranges is not specified.
SourcePortRanges []string
List of source ports or port ranges. This is required if source_port_range is not specified.
access This property is required. String
Specifies whether network traffic is allowed or denied. Possible values are Allow and Deny.
direction This property is required. String
The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are Inbound and Outbound.
networkSecurityGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Network Security Group that we want to attach the rule to. Changing this forces a new resource to be created.
priority This property is required. Integer
Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
protocol This property is required. String
Network protocol this rule applies to. Possible values include Tcp, Udp, Icmp, Esp, Ah or * (which matches all).
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group in which to create the Network Security Rule. Changing this forces a new resource to be created.
description String
A description for this rule. Restricted to 140 characters.
destinationAddressPrefix String
CIDR or destination IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. Besides, it also supports all available Service Tags like ‘Sql.WestEurope‘, ‘Storage.EastUS‘, etc. You can list the available service tags with the CLI: shell az network list-service-tags --location westcentralus. For further information please see Azure CLI - az network list-service-tags. This is required if destination_address_prefixes is not specified.
destinationAddressPrefixes List<String>
List of destination address prefixes. Tags may not be used. This is required if destination_address_prefix is not specified.
destinationApplicationSecurityGroupIds String
A List of destination Application Security Group IDs
destinationPortRange String
Destination Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if destination_port_ranges is not specified.
destinationPortRanges List<String>
List of destination ports or port ranges. This is required if destination_port_range is not specified.
name Changes to this property will trigger replacement. String
The name of the security rule. This needs to be unique across all Rules in the Network Security Group. Changing this forces a new resource to be created.
sourceAddressPrefix String
CIDR or source IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. This is required if source_address_prefixes is not specified.
sourceAddressPrefixes List<String>
List of source address prefixes. Tags may not be used. This is required if source_address_prefix is not specified.
sourceApplicationSecurityGroupIds String
A List of source Application Security Group IDs
sourcePortRange String
Source Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if source_port_ranges is not specified.
sourcePortRanges List<String>
List of source ports or port ranges. This is required if source_port_range is not specified.
access This property is required. string
Specifies whether network traffic is allowed or denied. Possible values are Allow and Deny.
direction This property is required. string
The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are Inbound and Outbound.
networkSecurityGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the Network Security Group that we want to attach the rule to. Changing this forces a new resource to be created.
priority This property is required. number
Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
protocol This property is required. string
Network protocol this rule applies to. Possible values include Tcp, Udp, Icmp, Esp, Ah or * (which matches all).
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group in which to create the Network Security Rule. Changing this forces a new resource to be created.
description string
A description for this rule. Restricted to 140 characters.
destinationAddressPrefix string
CIDR or destination IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. Besides, it also supports all available Service Tags like ‘Sql.WestEurope‘, ‘Storage.EastUS‘, etc. You can list the available service tags with the CLI: shell az network list-service-tags --location westcentralus. For further information please see Azure CLI - az network list-service-tags. This is required if destination_address_prefixes is not specified.
destinationAddressPrefixes string[]
List of destination address prefixes. Tags may not be used. This is required if destination_address_prefix is not specified.
destinationApplicationSecurityGroupIds string
A List of destination Application Security Group IDs
destinationPortRange string
Destination Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if destination_port_ranges is not specified.
destinationPortRanges string[]
List of destination ports or port ranges. This is required if destination_port_range is not specified.
name Changes to this property will trigger replacement. string
The name of the security rule. This needs to be unique across all Rules in the Network Security Group. Changing this forces a new resource to be created.
sourceAddressPrefix string
CIDR or source IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. This is required if source_address_prefixes is not specified.
sourceAddressPrefixes string[]
List of source address prefixes. Tags may not be used. This is required if source_address_prefix is not specified.
sourceApplicationSecurityGroupIds string
A List of source Application Security Group IDs
sourcePortRange string
Source Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if source_port_ranges is not specified.
sourcePortRanges string[]
List of source ports or port ranges. This is required if source_port_range is not specified.
access This property is required. str
Specifies whether network traffic is allowed or denied. Possible values are Allow and Deny.
direction This property is required. str
The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are Inbound and Outbound.
network_security_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the Network Security Group that we want to attach the rule to. Changing this forces a new resource to be created.
priority This property is required. int
Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
protocol This property is required. str
Network protocol this rule applies to. Possible values include Tcp, Udp, Icmp, Esp, Ah or * (which matches all).
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group in which to create the Network Security Rule. Changing this forces a new resource to be created.
description str
A description for this rule. Restricted to 140 characters.
destination_address_prefix str
CIDR or destination IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. Besides, it also supports all available Service Tags like ‘Sql.WestEurope‘, ‘Storage.EastUS‘, etc. You can list the available service tags with the CLI: shell az network list-service-tags --location westcentralus. For further information please see Azure CLI - az network list-service-tags. This is required if destination_address_prefixes is not specified.
destination_address_prefixes Sequence[str]
List of destination address prefixes. Tags may not be used. This is required if destination_address_prefix is not specified.
destination_application_security_group_ids str
A List of destination Application Security Group IDs
destination_port_range str
Destination Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if destination_port_ranges is not specified.
destination_port_ranges Sequence[str]
List of destination ports or port ranges. This is required if destination_port_range is not specified.
name Changes to this property will trigger replacement. str
The name of the security rule. This needs to be unique across all Rules in the Network Security Group. Changing this forces a new resource to be created.
source_address_prefix str
CIDR or source IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. This is required if source_address_prefixes is not specified.
source_address_prefixes Sequence[str]
List of source address prefixes. Tags may not be used. This is required if source_address_prefix is not specified.
source_application_security_group_ids str
A List of source Application Security Group IDs
source_port_range str
Source Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if source_port_ranges is not specified.
source_port_ranges Sequence[str]
List of source ports or port ranges. This is required if source_port_range is not specified.
access This property is required. String
Specifies whether network traffic is allowed or denied. Possible values are Allow and Deny.
direction This property is required. String
The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are Inbound and Outbound.
networkSecurityGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the Network Security Group that we want to attach the rule to. Changing this forces a new resource to be created.
priority This property is required. Number
Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
protocol This property is required. String
Network protocol this rule applies to. Possible values include Tcp, Udp, Icmp, Esp, Ah or * (which matches all).
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group in which to create the Network Security Rule. Changing this forces a new resource to be created.
description String
A description for this rule. Restricted to 140 characters.
destinationAddressPrefix String
CIDR or destination IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. Besides, it also supports all available Service Tags like ‘Sql.WestEurope‘, ‘Storage.EastUS‘, etc. You can list the available service tags with the CLI: shell az network list-service-tags --location westcentralus. For further information please see Azure CLI - az network list-service-tags. This is required if destination_address_prefixes is not specified.
destinationAddressPrefixes List<String>
List of destination address prefixes. Tags may not be used. This is required if destination_address_prefix is not specified.
destinationApplicationSecurityGroupIds String
A List of destination Application Security Group IDs
destinationPortRange String
Destination Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if destination_port_ranges is not specified.
destinationPortRanges List<String>
List of destination ports or port ranges. This is required if destination_port_range is not specified.
name Changes to this property will trigger replacement. String
The name of the security rule. This needs to be unique across all Rules in the Network Security Group. Changing this forces a new resource to be created.
sourceAddressPrefix String
CIDR or source IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. This is required if source_address_prefixes is not specified.
sourceAddressPrefixes List<String>
List of source address prefixes. Tags may not be used. This is required if source_address_prefix is not specified.
sourceApplicationSecurityGroupIds String
A List of source Application Security Group IDs
sourcePortRange String
Source Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if source_port_ranges is not specified.
sourcePortRanges List<String>
List of source ports or port ranges. This is required if source_port_range is not specified.

Outputs

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

Get an existing NetworkSecurityRule 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?: NetworkSecurityRuleState, opts?: CustomResourceOptions): NetworkSecurityRule
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        access: Optional[str] = None,
        description: Optional[str] = None,
        destination_address_prefix: Optional[str] = None,
        destination_address_prefixes: Optional[Sequence[str]] = None,
        destination_application_security_group_ids: Optional[str] = None,
        destination_port_range: Optional[str] = None,
        destination_port_ranges: Optional[Sequence[str]] = None,
        direction: Optional[str] = None,
        name: Optional[str] = None,
        network_security_group_name: Optional[str] = None,
        priority: Optional[int] = None,
        protocol: Optional[str] = None,
        resource_group_name: Optional[str] = None,
        source_address_prefix: Optional[str] = None,
        source_address_prefixes: Optional[Sequence[str]] = None,
        source_application_security_group_ids: Optional[str] = None,
        source_port_range: Optional[str] = None,
        source_port_ranges: Optional[Sequence[str]] = None) -> NetworkSecurityRule
func GetNetworkSecurityRule(ctx *Context, name string, id IDInput, state *NetworkSecurityRuleState, opts ...ResourceOption) (*NetworkSecurityRule, error)
public static NetworkSecurityRule Get(string name, Input<string> id, NetworkSecurityRuleState? state, CustomResourceOptions? opts = null)
public static NetworkSecurityRule get(String name, Output<String> id, NetworkSecurityRuleState state, CustomResourceOptions options)
resources:  _:    type: azure:network:NetworkSecurityRule    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Access string
Specifies whether network traffic is allowed or denied. Possible values are Allow and Deny.
Description string
A description for this rule. Restricted to 140 characters.
DestinationAddressPrefix string
CIDR or destination IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. Besides, it also supports all available Service Tags like ‘Sql.WestEurope‘, ‘Storage.EastUS‘, etc. You can list the available service tags with the CLI: shell az network list-service-tags --location westcentralus. For further information please see Azure CLI - az network list-service-tags. This is required if destination_address_prefixes is not specified.
DestinationAddressPrefixes List<string>
List of destination address prefixes. Tags may not be used. This is required if destination_address_prefix is not specified.
DestinationApplicationSecurityGroupIds string
A List of destination Application Security Group IDs
DestinationPortRange string
Destination Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if destination_port_ranges is not specified.
DestinationPortRanges List<string>
List of destination ports or port ranges. This is required if destination_port_range is not specified.
Direction string
The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are Inbound and Outbound.
Name Changes to this property will trigger replacement. string
The name of the security rule. This needs to be unique across all Rules in the Network Security Group. Changing this forces a new resource to be created.
NetworkSecurityGroupName Changes to this property will trigger replacement. string
The name of the Network Security Group that we want to attach the rule to. Changing this forces a new resource to be created.
Priority int
Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
Protocol string
Network protocol this rule applies to. Possible values include Tcp, Udp, Icmp, Esp, Ah or * (which matches all).
ResourceGroupName Changes to this property will trigger replacement. string
The name of the resource group in which to create the Network Security Rule. Changing this forces a new resource to be created.
SourceAddressPrefix string
CIDR or source IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. This is required if source_address_prefixes is not specified.
SourceAddressPrefixes List<string>
List of source address prefixes. Tags may not be used. This is required if source_address_prefix is not specified.
SourceApplicationSecurityGroupIds string
A List of source Application Security Group IDs
SourcePortRange string
Source Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if source_port_ranges is not specified.
SourcePortRanges List<string>
List of source ports or port ranges. This is required if source_port_range is not specified.
Access string
Specifies whether network traffic is allowed or denied. Possible values are Allow and Deny.
Description string
A description for this rule. Restricted to 140 characters.
DestinationAddressPrefix string
CIDR or destination IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. Besides, it also supports all available Service Tags like ‘Sql.WestEurope‘, ‘Storage.EastUS‘, etc. You can list the available service tags with the CLI: shell az network list-service-tags --location westcentralus. For further information please see Azure CLI - az network list-service-tags. This is required if destination_address_prefixes is not specified.
DestinationAddressPrefixes []string
List of destination address prefixes. Tags may not be used. This is required if destination_address_prefix is not specified.
DestinationApplicationSecurityGroupIds string
A List of destination Application Security Group IDs
DestinationPortRange string
Destination Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if destination_port_ranges is not specified.
DestinationPortRanges []string
List of destination ports or port ranges. This is required if destination_port_range is not specified.
Direction string
The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are Inbound and Outbound.
Name Changes to this property will trigger replacement. string
The name of the security rule. This needs to be unique across all Rules in the Network Security Group. Changing this forces a new resource to be created.
NetworkSecurityGroupName Changes to this property will trigger replacement. string
The name of the Network Security Group that we want to attach the rule to. Changing this forces a new resource to be created.
Priority int
Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
Protocol string
Network protocol this rule applies to. Possible values include Tcp, Udp, Icmp, Esp, Ah or * (which matches all).
ResourceGroupName Changes to this property will trigger replacement. string
The name of the resource group in which to create the Network Security Rule. Changing this forces a new resource to be created.
SourceAddressPrefix string
CIDR or source IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. This is required if source_address_prefixes is not specified.
SourceAddressPrefixes []string
List of source address prefixes. Tags may not be used. This is required if source_address_prefix is not specified.
SourceApplicationSecurityGroupIds string
A List of source Application Security Group IDs
SourcePortRange string
Source Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if source_port_ranges is not specified.
SourcePortRanges []string
List of source ports or port ranges. This is required if source_port_range is not specified.
access String
Specifies whether network traffic is allowed or denied. Possible values are Allow and Deny.
description String
A description for this rule. Restricted to 140 characters.
destinationAddressPrefix String
CIDR or destination IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. Besides, it also supports all available Service Tags like ‘Sql.WestEurope‘, ‘Storage.EastUS‘, etc. You can list the available service tags with the CLI: shell az network list-service-tags --location westcentralus. For further information please see Azure CLI - az network list-service-tags. This is required if destination_address_prefixes is not specified.
destinationAddressPrefixes List<String>
List of destination address prefixes. Tags may not be used. This is required if destination_address_prefix is not specified.
destinationApplicationSecurityGroupIds String
A List of destination Application Security Group IDs
destinationPortRange String
Destination Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if destination_port_ranges is not specified.
destinationPortRanges List<String>
List of destination ports or port ranges. This is required if destination_port_range is not specified.
direction String
The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are Inbound and Outbound.
name Changes to this property will trigger replacement. String
The name of the security rule. This needs to be unique across all Rules in the Network Security Group. Changing this forces a new resource to be created.
networkSecurityGroupName Changes to this property will trigger replacement. String
The name of the Network Security Group that we want to attach the rule to. Changing this forces a new resource to be created.
priority Integer
Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
protocol String
Network protocol this rule applies to. Possible values include Tcp, Udp, Icmp, Esp, Ah or * (which matches all).
resourceGroupName Changes to this property will trigger replacement. String
The name of the resource group in which to create the Network Security Rule. Changing this forces a new resource to be created.
sourceAddressPrefix String
CIDR or source IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. This is required if source_address_prefixes is not specified.
sourceAddressPrefixes List<String>
List of source address prefixes. Tags may not be used. This is required if source_address_prefix is not specified.
sourceApplicationSecurityGroupIds String
A List of source Application Security Group IDs
sourcePortRange String
Source Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if source_port_ranges is not specified.
sourcePortRanges List<String>
List of source ports or port ranges. This is required if source_port_range is not specified.
access string
Specifies whether network traffic is allowed or denied. Possible values are Allow and Deny.
description string
A description for this rule. Restricted to 140 characters.
destinationAddressPrefix string
CIDR or destination IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. Besides, it also supports all available Service Tags like ‘Sql.WestEurope‘, ‘Storage.EastUS‘, etc. You can list the available service tags with the CLI: shell az network list-service-tags --location westcentralus. For further information please see Azure CLI - az network list-service-tags. This is required if destination_address_prefixes is not specified.
destinationAddressPrefixes string[]
List of destination address prefixes. Tags may not be used. This is required if destination_address_prefix is not specified.
destinationApplicationSecurityGroupIds string
A List of destination Application Security Group IDs
destinationPortRange string
Destination Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if destination_port_ranges is not specified.
destinationPortRanges string[]
List of destination ports or port ranges. This is required if destination_port_range is not specified.
direction string
The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are Inbound and Outbound.
name Changes to this property will trigger replacement. string
The name of the security rule. This needs to be unique across all Rules in the Network Security Group. Changing this forces a new resource to be created.
networkSecurityGroupName Changes to this property will trigger replacement. string
The name of the Network Security Group that we want to attach the rule to. Changing this forces a new resource to be created.
priority number
Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
protocol string
Network protocol this rule applies to. Possible values include Tcp, Udp, Icmp, Esp, Ah or * (which matches all).
resourceGroupName Changes to this property will trigger replacement. string
The name of the resource group in which to create the Network Security Rule. Changing this forces a new resource to be created.
sourceAddressPrefix string
CIDR or source IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. This is required if source_address_prefixes is not specified.
sourceAddressPrefixes string[]
List of source address prefixes. Tags may not be used. This is required if source_address_prefix is not specified.
sourceApplicationSecurityGroupIds string
A List of source Application Security Group IDs
sourcePortRange string
Source Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if source_port_ranges is not specified.
sourcePortRanges string[]
List of source ports or port ranges. This is required if source_port_range is not specified.
access str
Specifies whether network traffic is allowed or denied. Possible values are Allow and Deny.
description str
A description for this rule. Restricted to 140 characters.
destination_address_prefix str
CIDR or destination IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. Besides, it also supports all available Service Tags like ‘Sql.WestEurope‘, ‘Storage.EastUS‘, etc. You can list the available service tags with the CLI: shell az network list-service-tags --location westcentralus. For further information please see Azure CLI - az network list-service-tags. This is required if destination_address_prefixes is not specified.
destination_address_prefixes Sequence[str]
List of destination address prefixes. Tags may not be used. This is required if destination_address_prefix is not specified.
destination_application_security_group_ids str
A List of destination Application Security Group IDs
destination_port_range str
Destination Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if destination_port_ranges is not specified.
destination_port_ranges Sequence[str]
List of destination ports or port ranges. This is required if destination_port_range is not specified.
direction str
The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are Inbound and Outbound.
name Changes to this property will trigger replacement. str
The name of the security rule. This needs to be unique across all Rules in the Network Security Group. Changing this forces a new resource to be created.
network_security_group_name Changes to this property will trigger replacement. str
The name of the Network Security Group that we want to attach the rule to. Changing this forces a new resource to be created.
priority int
Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
protocol str
Network protocol this rule applies to. Possible values include Tcp, Udp, Icmp, Esp, Ah or * (which matches all).
resource_group_name Changes to this property will trigger replacement. str
The name of the resource group in which to create the Network Security Rule. Changing this forces a new resource to be created.
source_address_prefix str
CIDR or source IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. This is required if source_address_prefixes is not specified.
source_address_prefixes Sequence[str]
List of source address prefixes. Tags may not be used. This is required if source_address_prefix is not specified.
source_application_security_group_ids str
A List of source Application Security Group IDs
source_port_range str
Source Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if source_port_ranges is not specified.
source_port_ranges Sequence[str]
List of source ports or port ranges. This is required if source_port_range is not specified.
access String
Specifies whether network traffic is allowed or denied. Possible values are Allow and Deny.
description String
A description for this rule. Restricted to 140 characters.
destinationAddressPrefix String
CIDR or destination IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. Besides, it also supports all available Service Tags like ‘Sql.WestEurope‘, ‘Storage.EastUS‘, etc. You can list the available service tags with the CLI: shell az network list-service-tags --location westcentralus. For further information please see Azure CLI - az network list-service-tags. This is required if destination_address_prefixes is not specified.
destinationAddressPrefixes List<String>
List of destination address prefixes. Tags may not be used. This is required if destination_address_prefix is not specified.
destinationApplicationSecurityGroupIds String
A List of destination Application Security Group IDs
destinationPortRange String
Destination Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if destination_port_ranges is not specified.
destinationPortRanges List<String>
List of destination ports or port ranges. This is required if destination_port_range is not specified.
direction String
The direction specifies if rule will be evaluated on incoming or outgoing traffic. Possible values are Inbound and Outbound.
name Changes to this property will trigger replacement. String
The name of the security rule. This needs to be unique across all Rules in the Network Security Group. Changing this forces a new resource to be created.
networkSecurityGroupName Changes to this property will trigger replacement. String
The name of the Network Security Group that we want to attach the rule to. Changing this forces a new resource to be created.
priority Number
Specifies the priority of the rule. The value can be between 100 and 4096. The priority number must be unique for each rule in the collection. The lower the priority number, the higher the priority of the rule.
protocol String
Network protocol this rule applies to. Possible values include Tcp, Udp, Icmp, Esp, Ah or * (which matches all).
resourceGroupName Changes to this property will trigger replacement. String
The name of the resource group in which to create the Network Security Rule. Changing this forces a new resource to be created.
sourceAddressPrefix String
CIDR or source IP range or * to match any IP. Tags such as VirtualNetwork, AzureLoadBalancer and Internet can also be used. This is required if source_address_prefixes is not specified.
sourceAddressPrefixes List<String>
List of source address prefixes. Tags may not be used. This is required if source_address_prefix is not specified.
sourceApplicationSecurityGroupIds String
A List of source Application Security Group IDs
sourcePortRange String
Source Port or Range. Integer or range between 0 and 65535 or * to match any. This is required if source_port_ranges is not specified.
sourcePortRanges List<String>
List of source ports or port ranges. This is required if source_port_range is not specified.

Import

Network Security Rules can be imported using the resource id, e.g.

$ pulumi import azure:network/networkSecurityRule:NetworkSecurityRule rule1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Network/networkSecurityGroups/mySecurityGroup/securityRules/rule1
Copy

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.