1. Packages
  2. Azure Classic
  3. API Docs
  4. iot
  5. SecurityDeviceGroup

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 Iot Security Device Group.

    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 exampleIoTHub = new Azure.Iot.IoTHub("exampleIoTHub", new Azure.Iot.IoTHubArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                Location = exampleResourceGroup.Location,
                Sku = new Azure.Iot.Inputs.IoTHubSkuArgs
                {
                    Name = "S1",
                    Capacity = 1,
                },
            });
            var exampleSecuritySolution = new Azure.Iot.SecuritySolution("exampleSecuritySolution", new Azure.Iot.SecuritySolutionArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                Location = exampleResourceGroup.Location,
                DisplayName = "Iot Security Solution",
                IothubIds = 
                {
                    exampleIoTHub.Id,
                },
            });
            var exampleSecurityDeviceGroup = new Azure.Iot.SecurityDeviceGroup("exampleSecurityDeviceGroup", new Azure.Iot.SecurityDeviceGroupArgs
            {
                IothubId = exampleIoTHub.Id,
                AllowRule = new Azure.Iot.Inputs.SecurityDeviceGroupAllowRuleArgs
                {
                    ConnectionToIpsNotAlloweds = 
                    {
                        "10.0.0.0/24",
                    },
                },
                RangeRules = 
                {
                    new Azure.Iot.Inputs.SecurityDeviceGroupRangeRuleArgs
                    {
                        Type = "ActiveConnectionsNotInAllowedRange",
                        Min = 0,
                        Max = 30,
                        Duration = "PT5M",
                    },
                },
            }, new CustomResourceOptions
            {
                DependsOn = 
                {
                    exampleSecuritySolution,
                },
            });
        }
    
    }
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/core"
    	"github.com/pulumi/pulumi-azure/sdk/v4/go/azure/iot"
    	"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
    		}
    		exampleIoTHub, err := iot.NewIoTHub(ctx, "exampleIoTHub", &iot.IoTHubArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			Location:          exampleResourceGroup.Location,
    			Sku: &iot.IoTHubSkuArgs{
    				Name:     pulumi.String("S1"),
    				Capacity: pulumi.Int(1),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		exampleSecuritySolution, err := iot.NewSecuritySolution(ctx, "exampleSecuritySolution", &iot.SecuritySolutionArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			Location:          exampleResourceGroup.Location,
    			DisplayName:       pulumi.String("Iot Security Solution"),
    			IothubIds: pulumi.StringArray{
    				exampleIoTHub.ID(),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = iot.NewSecurityDeviceGroup(ctx, "exampleSecurityDeviceGroup", &iot.SecurityDeviceGroupArgs{
    			IothubId: exampleIoTHub.ID(),
    			AllowRule: &iot.SecurityDeviceGroupAllowRuleArgs{
    				ConnectionToIpsNotAlloweds: pulumi.StringArray{
    					pulumi.String("10.0.0.0/24"),
    				},
    			},
    			RangeRules: iot.SecurityDeviceGroupRangeRuleArray{
    				&iot.SecurityDeviceGroupRangeRuleArgs{
    					Type:     pulumi.String("ActiveConnectionsNotInAllowedRange"),
    					Min:      pulumi.Int(0),
    					Max:      pulumi.Int(30),
    					Duration: pulumi.String("PT5M"),
    				},
    			},
    		}, pulumi.DependsOn([]pulumi.Resource{
    			exampleSecuritySolution,
    		}))
    		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 exampleIoTHub = new azure.iot.IoTHub("exampleIoTHub", {
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
        sku: {
            name: "S1",
            capacity: "1",
        },
    });
    const exampleSecuritySolution = new azure.iot.SecuritySolution("exampleSecuritySolution", {
        resourceGroupName: exampleResourceGroup.name,
        location: exampleResourceGroup.location,
        displayName: "Iot Security Solution",
        iothubIds: [exampleIoTHub.id],
    });
    const exampleSecurityDeviceGroup = new azure.iot.SecurityDeviceGroup("exampleSecurityDeviceGroup", {
        iothubId: exampleIoTHub.id,
        allowRule: {
            connectionToIpsNotAlloweds: ["10.0.0.0/24"],
        },
        rangeRules: [{
            type: "ActiveConnectionsNotInAllowedRange",
            min: 0,
            max: 30,
            duration: "PT5M",
        }],
    }, {
        dependsOn: [exampleSecuritySolution],
    });
    
    import pulumi
    import pulumi_azure as azure
    
    example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
    example_io_t_hub = azure.iot.IoTHub("exampleIoTHub",
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location,
        sku=azure.iot.IoTHubSkuArgs(
            name="S1",
            capacity=1,
        ))
    example_security_solution = azure.iot.SecuritySolution("exampleSecuritySolution",
        resource_group_name=example_resource_group.name,
        location=example_resource_group.location,
        display_name="Iot Security Solution",
        iothub_ids=[example_io_t_hub.id])
    example_security_device_group = azure.iot.SecurityDeviceGroup("exampleSecurityDeviceGroup",
        iothub_id=example_io_t_hub.id,
        allow_rule=azure.iot.SecurityDeviceGroupAllowRuleArgs(
            connection_to_ips_not_alloweds=["10.0.0.0/24"],
        ),
        range_rules=[azure.iot.SecurityDeviceGroupRangeRuleArgs(
            type="ActiveConnectionsNotInAllowedRange",
            min=0,
            max=30,
            duration="PT5M",
        )],
        opts=pulumi.ResourceOptions(depends_on=[example_security_solution]))
    

    Example coming soon!

    Create SecurityDeviceGroup Resource

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

    Constructor syntax

    new SecurityDeviceGroup(name: string, args: SecurityDeviceGroupArgs, opts?: CustomResourceOptions);
    @overload
    def SecurityDeviceGroup(resource_name: str,
                            args: SecurityDeviceGroupArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def SecurityDeviceGroup(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            iothub_id: Optional[str] = None,
                            allow_rule: Optional[SecurityDeviceGroupAllowRuleArgs] = None,
                            name: Optional[str] = None,
                            range_rules: Optional[Sequence[SecurityDeviceGroupRangeRuleArgs]] = None)
    func NewSecurityDeviceGroup(ctx *Context, name string, args SecurityDeviceGroupArgs, opts ...ResourceOption) (*SecurityDeviceGroup, error)
    public SecurityDeviceGroup(string name, SecurityDeviceGroupArgs args, CustomResourceOptions? opts = null)
    public SecurityDeviceGroup(String name, SecurityDeviceGroupArgs args)
    public SecurityDeviceGroup(String name, SecurityDeviceGroupArgs args, CustomResourceOptions options)
    
    type: azure:iot:SecurityDeviceGroup
    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 SecurityDeviceGroupArgs
    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 SecurityDeviceGroupArgs
    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 SecurityDeviceGroupArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SecurityDeviceGroupArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SecurityDeviceGroupArgs
    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 securityDeviceGroupResource = new Azure.Iot.SecurityDeviceGroup("securityDeviceGroupResource", new()
    {
        IothubId = "string",
        AllowRule = new Azure.Iot.Inputs.SecurityDeviceGroupAllowRuleArgs
        {
            ConnectionFromIpsNotAlloweds = new[]
            {
                "string",
            },
            ConnectionToIpsNotAlloweds = new[]
            {
                "string",
            },
            LocalUsersNotAlloweds = new[]
            {
                "string",
            },
            ProcessesNotAlloweds = new[]
            {
                "string",
            },
        },
        Name = "string",
        RangeRules = new[]
        {
            new Azure.Iot.Inputs.SecurityDeviceGroupRangeRuleArgs
            {
                Duration = "string",
                Max = 0,
                Min = 0,
                Type = "string",
            },
        },
    });
    
    example, err := iot.NewSecurityDeviceGroup(ctx, "securityDeviceGroupResource", &iot.SecurityDeviceGroupArgs{
    	IothubId: pulumi.String("string"),
    	AllowRule: &iot.SecurityDeviceGroupAllowRuleArgs{
    		ConnectionFromIpsNotAlloweds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		ConnectionToIpsNotAlloweds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		LocalUsersNotAlloweds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		ProcessesNotAlloweds: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Name: pulumi.String("string"),
    	RangeRules: iot.SecurityDeviceGroupRangeRuleArray{
    		&iot.SecurityDeviceGroupRangeRuleArgs{
    			Duration: pulumi.String("string"),
    			Max:      pulumi.Int(0),
    			Min:      pulumi.Int(0),
    			Type:     pulumi.String("string"),
    		},
    	},
    })
    
    var securityDeviceGroupResource = new SecurityDeviceGroup("securityDeviceGroupResource", SecurityDeviceGroupArgs.builder()
        .iothubId("string")
        .allowRule(SecurityDeviceGroupAllowRuleArgs.builder()
            .connectionFromIpsNotAlloweds("string")
            .connectionToIpsNotAlloweds("string")
            .localUsersNotAlloweds("string")
            .processesNotAlloweds("string")
            .build())
        .name("string")
        .rangeRules(SecurityDeviceGroupRangeRuleArgs.builder()
            .duration("string")
            .max(0)
            .min(0)
            .type("string")
            .build())
        .build());
    
    security_device_group_resource = azure.iot.SecurityDeviceGroup("securityDeviceGroupResource",
        iothub_id="string",
        allow_rule={
            "connection_from_ips_not_alloweds": ["string"],
            "connection_to_ips_not_alloweds": ["string"],
            "local_users_not_alloweds": ["string"],
            "processes_not_alloweds": ["string"],
        },
        name="string",
        range_rules=[{
            "duration": "string",
            "max": 0,
            "min": 0,
            "type": "string",
        }])
    
    const securityDeviceGroupResource = new azure.iot.SecurityDeviceGroup("securityDeviceGroupResource", {
        iothubId: "string",
        allowRule: {
            connectionFromIpsNotAlloweds: ["string"],
            connectionToIpsNotAlloweds: ["string"],
            localUsersNotAlloweds: ["string"],
            processesNotAlloweds: ["string"],
        },
        name: "string",
        rangeRules: [{
            duration: "string",
            max: 0,
            min: 0,
            type: "string",
        }],
    });
    
    type: azure:iot:SecurityDeviceGroup
    properties:
        allowRule:
            connectionFromIpsNotAlloweds:
                - string
            connectionToIpsNotAlloweds:
                - string
            localUsersNotAlloweds:
                - string
            processesNotAlloweds:
                - string
        iothubId: string
        name: string
        rangeRules:
            - duration: string
              max: 0
              min: 0
              type: string
    

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

    IothubId string
    The ID of the IoT Hub which to link the Security Device Group to. Changing this forces a new resource to be created.
    AllowRule SecurityDeviceGroupAllowRule
    an allow_rule blocks as defined below.
    Name string
    Specifies the name of the Device Security Group. Changing this forces a new resource to be created.
    RangeRules List<SecurityDeviceGroupRangeRule>
    One or more range_rule blocks as defined below.
    IothubId string
    The ID of the IoT Hub which to link the Security Device Group to. Changing this forces a new resource to be created.
    AllowRule SecurityDeviceGroupAllowRuleArgs
    an allow_rule blocks as defined below.
    Name string
    Specifies the name of the Device Security Group. Changing this forces a new resource to be created.
    RangeRules []SecurityDeviceGroupRangeRuleArgs
    One or more range_rule blocks as defined below.
    iothubId String
    The ID of the IoT Hub which to link the Security Device Group to. Changing this forces a new resource to be created.
    allowRule SecurityDeviceGroupAllowRule
    an allow_rule blocks as defined below.
    name String
    Specifies the name of the Device Security Group. Changing this forces a new resource to be created.
    rangeRules List<SecurityDeviceGroupRangeRule>
    One or more range_rule blocks as defined below.
    iothubId string
    The ID of the IoT Hub which to link the Security Device Group to. Changing this forces a new resource to be created.
    allowRule SecurityDeviceGroupAllowRule
    an allow_rule blocks as defined below.
    name string
    Specifies the name of the Device Security Group. Changing this forces a new resource to be created.
    rangeRules SecurityDeviceGroupRangeRule[]
    One or more range_rule blocks as defined below.
    iothub_id str
    The ID of the IoT Hub which to link the Security Device Group to. Changing this forces a new resource to be created.
    allow_rule SecurityDeviceGroupAllowRuleArgs
    an allow_rule blocks as defined below.
    name str
    Specifies the name of the Device Security Group. Changing this forces a new resource to be created.
    range_rules Sequence[SecurityDeviceGroupRangeRuleArgs]
    One or more range_rule blocks as defined below.
    iothubId String
    The ID of the IoT Hub which to link the Security Device Group to. Changing this forces a new resource to be created.
    allowRule Property Map
    an allow_rule blocks as defined below.
    name String
    Specifies the name of the Device Security Group. Changing this forces a new resource to be created.
    rangeRules List<Property Map>
    One or more range_rule blocks as defined below.

    Outputs

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

    Get an existing SecurityDeviceGroup 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?: SecurityDeviceGroupState, opts?: CustomResourceOptions): SecurityDeviceGroup
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            allow_rule: Optional[SecurityDeviceGroupAllowRuleArgs] = None,
            iothub_id: Optional[str] = None,
            name: Optional[str] = None,
            range_rules: Optional[Sequence[SecurityDeviceGroupRangeRuleArgs]] = None) -> SecurityDeviceGroup
    func GetSecurityDeviceGroup(ctx *Context, name string, id IDInput, state *SecurityDeviceGroupState, opts ...ResourceOption) (*SecurityDeviceGroup, error)
    public static SecurityDeviceGroup Get(string name, Input<string> id, SecurityDeviceGroupState? state, CustomResourceOptions? opts = null)
    public static SecurityDeviceGroup get(String name, Output<String> id, SecurityDeviceGroupState state, CustomResourceOptions options)
    resources:  _:    type: azure:iot:SecurityDeviceGroup    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:
    AllowRule SecurityDeviceGroupAllowRule
    an allow_rule blocks as defined below.
    IothubId string
    The ID of the IoT Hub which to link the Security Device Group to. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Device Security Group. Changing this forces a new resource to be created.
    RangeRules List<SecurityDeviceGroupRangeRule>
    One or more range_rule blocks as defined below.
    AllowRule SecurityDeviceGroupAllowRuleArgs
    an allow_rule blocks as defined below.
    IothubId string
    The ID of the IoT Hub which to link the Security Device Group to. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the Device Security Group. Changing this forces a new resource to be created.
    RangeRules []SecurityDeviceGroupRangeRuleArgs
    One or more range_rule blocks as defined below.
    allowRule SecurityDeviceGroupAllowRule
    an allow_rule blocks as defined below.
    iothubId String
    The ID of the IoT Hub which to link the Security Device Group to. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Device Security Group. Changing this forces a new resource to be created.
    rangeRules List<SecurityDeviceGroupRangeRule>
    One or more range_rule blocks as defined below.
    allowRule SecurityDeviceGroupAllowRule
    an allow_rule blocks as defined below.
    iothubId string
    The ID of the IoT Hub which to link the Security Device Group to. Changing this forces a new resource to be created.
    name string
    Specifies the name of the Device Security Group. Changing this forces a new resource to be created.
    rangeRules SecurityDeviceGroupRangeRule[]
    One or more range_rule blocks as defined below.
    allow_rule SecurityDeviceGroupAllowRuleArgs
    an allow_rule blocks as defined below.
    iothub_id str
    The ID of the IoT Hub which to link the Security Device Group to. Changing this forces a new resource to be created.
    name str
    Specifies the name of the Device Security Group. Changing this forces a new resource to be created.
    range_rules Sequence[SecurityDeviceGroupRangeRuleArgs]
    One or more range_rule blocks as defined below.
    allowRule Property Map
    an allow_rule blocks as defined below.
    iothubId String
    The ID of the IoT Hub which to link the Security Device Group to. Changing this forces a new resource to be created.
    name String
    Specifies the name of the Device Security Group. Changing this forces a new resource to be created.
    rangeRules List<Property Map>
    One or more range_rule blocks as defined below.

    Supporting Types

    SecurityDeviceGroupAllowRule, SecurityDeviceGroupAllowRuleArgs

    ConnectionFromIpsNotAlloweds List<string>
    Specifies which IP is not allowed to be connected to in current device group for inbound connection.
    ConnectionToIpNotAlloweds List<string>

    Deprecated: This property has been renamed to connection_to_ips_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    ConnectionToIpsNotAlloweds List<string>
    Specifies which IP is not allowed to be connected to in current device group for outbound connection.
    LocalUserNotAlloweds List<string>

    Deprecated: This property has been renamed to local_users_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    LocalUsersNotAlloweds List<string>
    Specifies which local user is not allowed to Login in current device group.
    ProcessNotAlloweds List<string>

    Deprecated: This property has been renamed to processes_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    ProcessesNotAlloweds List<string>
    Specifies which process is not allowed to be executed in current device group.
    ConnectionFromIpsNotAlloweds []string
    Specifies which IP is not allowed to be connected to in current device group for inbound connection.
    ConnectionToIpNotAlloweds []string

    Deprecated: This property has been renamed to connection_to_ips_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    ConnectionToIpsNotAlloweds []string
    Specifies which IP is not allowed to be connected to in current device group for outbound connection.
    LocalUserNotAlloweds []string

    Deprecated: This property has been renamed to local_users_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    LocalUsersNotAlloweds []string
    Specifies which local user is not allowed to Login in current device group.
    ProcessNotAlloweds []string

    Deprecated: This property has been renamed to processes_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    ProcessesNotAlloweds []string
    Specifies which process is not allowed to be executed in current device group.
    connectionFromIpsNotAlloweds List<String>
    Specifies which IP is not allowed to be connected to in current device group for inbound connection.
    connectionToIpNotAlloweds List<String>

    Deprecated: This property has been renamed to connection_to_ips_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    connectionToIpsNotAlloweds List<String>
    Specifies which IP is not allowed to be connected to in current device group for outbound connection.
    localUserNotAlloweds List<String>

    Deprecated: This property has been renamed to local_users_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    localUsersNotAlloweds List<String>
    Specifies which local user is not allowed to Login in current device group.
    processNotAlloweds List<String>

    Deprecated: This property has been renamed to processes_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    processesNotAlloweds List<String>
    Specifies which process is not allowed to be executed in current device group.
    connectionFromIpsNotAlloweds string[]
    Specifies which IP is not allowed to be connected to in current device group for inbound connection.
    connectionToIpNotAlloweds string[]

    Deprecated: This property has been renamed to connection_to_ips_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    connectionToIpsNotAlloweds string[]
    Specifies which IP is not allowed to be connected to in current device group for outbound connection.
    localUserNotAlloweds string[]

    Deprecated: This property has been renamed to local_users_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    localUsersNotAlloweds string[]
    Specifies which local user is not allowed to Login in current device group.
    processNotAlloweds string[]

    Deprecated: This property has been renamed to processes_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    processesNotAlloweds string[]
    Specifies which process is not allowed to be executed in current device group.
    connection_from_ips_not_alloweds Sequence[str]
    Specifies which IP is not allowed to be connected to in current device group for inbound connection.
    connection_to_ip_not_alloweds Sequence[str]

    Deprecated: This property has been renamed to connection_to_ips_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    connection_to_ips_not_alloweds Sequence[str]
    Specifies which IP is not allowed to be connected to in current device group for outbound connection.
    local_user_not_alloweds Sequence[str]

    Deprecated: This property has been renamed to local_users_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    local_users_not_alloweds Sequence[str]
    Specifies which local user is not allowed to Login in current device group.
    process_not_alloweds Sequence[str]

    Deprecated: This property has been renamed to processes_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    processes_not_alloweds Sequence[str]
    Specifies which process is not allowed to be executed in current device group.
    connectionFromIpsNotAlloweds List<String>
    Specifies which IP is not allowed to be connected to in current device group for inbound connection.
    connectionToIpNotAlloweds List<String>

    Deprecated: This property has been renamed to connection_to_ips_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    connectionToIpsNotAlloweds List<String>
    Specifies which IP is not allowed to be connected to in current device group for outbound connection.
    localUserNotAlloweds List<String>

    Deprecated: This property has been renamed to local_users_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    localUsersNotAlloweds List<String>
    Specifies which local user is not allowed to Login in current device group.
    processNotAlloweds List<String>

    Deprecated: This property has been renamed to processes_not_allowed and will be removed in v3.0 of the provider in support of HashiCorp's inclusive language policy which can be found here: https://discuss.hashicorp.com/t/inclusive-language-changes

    processesNotAlloweds List<String>
    Specifies which process is not allowed to be executed in current device group.

    SecurityDeviceGroupRangeRule, SecurityDeviceGroupRangeRuleArgs

    Duration string
    Specifies the time range. represented in ISO 8601 duration format.
    Max int
    The maximum threshold in the given time window.
    Min int
    The minimum threshold in the given time window.
    Type string
    The type of supported rule type. Possible Values are ActiveConnectionsNotInAllowedRange, AmqpC2DMessagesNotInAllowedRange, MqttC2DMessagesNotInAllowedRange, HttpC2DMessagesNotInAllowedRange, AmqpC2DRejectedMessagesNotInAllowedRange, MqttC2DRejectedMessagesNotInAllowedRange, HttpC2DRejectedMessagesNotInAllowedRange, AmqpD2CMessagesNotInAllowedRange, MqttD2CMessagesNotInAllowedRange, HttpD2CMessagesNotInAllowedRange, DirectMethodInvokesNotInAllowedRange, FailedLocalLoginsNotInAllowedRange, FileUploadsNotInAllowedRange, QueuePurgesNotInAllowedRange, TwinUpdatesNotInAllowedRange and UnauthorizedOperationsNotInAllowedRange.
    Duration string
    Specifies the time range. represented in ISO 8601 duration format.
    Max int
    The maximum threshold in the given time window.
    Min int
    The minimum threshold in the given time window.
    Type string
    The type of supported rule type. Possible Values are ActiveConnectionsNotInAllowedRange, AmqpC2DMessagesNotInAllowedRange, MqttC2DMessagesNotInAllowedRange, HttpC2DMessagesNotInAllowedRange, AmqpC2DRejectedMessagesNotInAllowedRange, MqttC2DRejectedMessagesNotInAllowedRange, HttpC2DRejectedMessagesNotInAllowedRange, AmqpD2CMessagesNotInAllowedRange, MqttD2CMessagesNotInAllowedRange, HttpD2CMessagesNotInAllowedRange, DirectMethodInvokesNotInAllowedRange, FailedLocalLoginsNotInAllowedRange, FileUploadsNotInAllowedRange, QueuePurgesNotInAllowedRange, TwinUpdatesNotInAllowedRange and UnauthorizedOperationsNotInAllowedRange.
    duration String
    Specifies the time range. represented in ISO 8601 duration format.
    max Integer
    The maximum threshold in the given time window.
    min Integer
    The minimum threshold in the given time window.
    type String
    The type of supported rule type. Possible Values are ActiveConnectionsNotInAllowedRange, AmqpC2DMessagesNotInAllowedRange, MqttC2DMessagesNotInAllowedRange, HttpC2DMessagesNotInAllowedRange, AmqpC2DRejectedMessagesNotInAllowedRange, MqttC2DRejectedMessagesNotInAllowedRange, HttpC2DRejectedMessagesNotInAllowedRange, AmqpD2CMessagesNotInAllowedRange, MqttD2CMessagesNotInAllowedRange, HttpD2CMessagesNotInAllowedRange, DirectMethodInvokesNotInAllowedRange, FailedLocalLoginsNotInAllowedRange, FileUploadsNotInAllowedRange, QueuePurgesNotInAllowedRange, TwinUpdatesNotInAllowedRange and UnauthorizedOperationsNotInAllowedRange.
    duration string
    Specifies the time range. represented in ISO 8601 duration format.
    max number
    The maximum threshold in the given time window.
    min number
    The minimum threshold in the given time window.
    type string
    The type of supported rule type. Possible Values are ActiveConnectionsNotInAllowedRange, AmqpC2DMessagesNotInAllowedRange, MqttC2DMessagesNotInAllowedRange, HttpC2DMessagesNotInAllowedRange, AmqpC2DRejectedMessagesNotInAllowedRange, MqttC2DRejectedMessagesNotInAllowedRange, HttpC2DRejectedMessagesNotInAllowedRange, AmqpD2CMessagesNotInAllowedRange, MqttD2CMessagesNotInAllowedRange, HttpD2CMessagesNotInAllowedRange, DirectMethodInvokesNotInAllowedRange, FailedLocalLoginsNotInAllowedRange, FileUploadsNotInAllowedRange, QueuePurgesNotInAllowedRange, TwinUpdatesNotInAllowedRange and UnauthorizedOperationsNotInAllowedRange.
    duration str
    Specifies the time range. represented in ISO 8601 duration format.
    max int
    The maximum threshold in the given time window.
    min int
    The minimum threshold in the given time window.
    type str
    The type of supported rule type. Possible Values are ActiveConnectionsNotInAllowedRange, AmqpC2DMessagesNotInAllowedRange, MqttC2DMessagesNotInAllowedRange, HttpC2DMessagesNotInAllowedRange, AmqpC2DRejectedMessagesNotInAllowedRange, MqttC2DRejectedMessagesNotInAllowedRange, HttpC2DRejectedMessagesNotInAllowedRange, AmqpD2CMessagesNotInAllowedRange, MqttD2CMessagesNotInAllowedRange, HttpD2CMessagesNotInAllowedRange, DirectMethodInvokesNotInAllowedRange, FailedLocalLoginsNotInAllowedRange, FileUploadsNotInAllowedRange, QueuePurgesNotInAllowedRange, TwinUpdatesNotInAllowedRange and UnauthorizedOperationsNotInAllowedRange.
    duration String
    Specifies the time range. represented in ISO 8601 duration format.
    max Number
    The maximum threshold in the given time window.
    min Number
    The minimum threshold in the given time window.
    type String
    The type of supported rule type. Possible Values are ActiveConnectionsNotInAllowedRange, AmqpC2DMessagesNotInAllowedRange, MqttC2DMessagesNotInAllowedRange, HttpC2DMessagesNotInAllowedRange, AmqpC2DRejectedMessagesNotInAllowedRange, MqttC2DRejectedMessagesNotInAllowedRange, HttpC2DRejectedMessagesNotInAllowedRange, AmqpD2CMessagesNotInAllowedRange, MqttD2CMessagesNotInAllowedRange, HttpD2CMessagesNotInAllowedRange, DirectMethodInvokesNotInAllowedRange, FailedLocalLoginsNotInAllowedRange, FileUploadsNotInAllowedRange, QueuePurgesNotInAllowedRange, TwinUpdatesNotInAllowedRange and UnauthorizedOperationsNotInAllowedRange.

    Import

    Iot Security Device Group can be imported using the resource id, e.g.

     $ pulumi import azure:iot/securityDeviceGroup:SecurityDeviceGroup example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/resGroup1/providers/Microsoft.Devices/iotHubs/hub1/providers/Microsoft.Security/deviceSecurityGroups/group1
    

    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.