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

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 an IotHub Shared Access Policy

    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 exampleSharedAccessPolicy = new Azure.Iot.SharedAccessPolicy("exampleSharedAccessPolicy", new Azure.Iot.SharedAccessPolicyArgs
            {
                ResourceGroupName = exampleResourceGroup.Name,
                IothubName = exampleIoTHub.Name,
                RegistryRead = true,
                RegistryWrite = true,
            });
        }
    
    }
    
    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
    		}
    		_, err = iot.NewSharedAccessPolicy(ctx, "exampleSharedAccessPolicy", &iot.SharedAccessPolicyArgs{
    			ResourceGroupName: exampleResourceGroup.Name,
    			IothubName:        exampleIoTHub.Name,
    			RegistryRead:      pulumi.Bool(true),
    			RegistryWrite:     pulumi.Bool(true),
    		})
    		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 exampleSharedAccessPolicy = new azure.iot.SharedAccessPolicy("exampleSharedAccessPolicy", {
        resourceGroupName: exampleResourceGroup.name,
        iothubName: exampleIoTHub.name,
        registryRead: true,
        registryWrite: true,
    });
    
    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_shared_access_policy = azure.iot.SharedAccessPolicy("exampleSharedAccessPolicy",
        resource_group_name=example_resource_group.name,
        iothub_name=example_io_t_hub.name,
        registry_read=True,
        registry_write=True)
    

    Example coming soon!

    Create SharedAccessPolicy Resource

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

    Constructor syntax

    new SharedAccessPolicy(name: string, args: SharedAccessPolicyArgs, opts?: CustomResourceOptions);
    @overload
    def SharedAccessPolicy(resource_name: str,
                           args: SharedAccessPolicyArgs,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def SharedAccessPolicy(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           iothub_name: Optional[str] = None,
                           resource_group_name: Optional[str] = None,
                           device_connect: Optional[bool] = None,
                           name: Optional[str] = None,
                           registry_read: Optional[bool] = None,
                           registry_write: Optional[bool] = None,
                           service_connect: Optional[bool] = None)
    func NewSharedAccessPolicy(ctx *Context, name string, args SharedAccessPolicyArgs, opts ...ResourceOption) (*SharedAccessPolicy, error)
    public SharedAccessPolicy(string name, SharedAccessPolicyArgs args, CustomResourceOptions? opts = null)
    public SharedAccessPolicy(String name, SharedAccessPolicyArgs args)
    public SharedAccessPolicy(String name, SharedAccessPolicyArgs args, CustomResourceOptions options)
    
    type: azure:iot:SharedAccessPolicy
    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 SharedAccessPolicyArgs
    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 SharedAccessPolicyArgs
    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 SharedAccessPolicyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SharedAccessPolicyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SharedAccessPolicyArgs
    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 sharedAccessPolicyResource = new Azure.Iot.SharedAccessPolicy("sharedAccessPolicyResource", new()
    {
        IothubName = "string",
        ResourceGroupName = "string",
        DeviceConnect = false,
        Name = "string",
        RegistryRead = false,
        RegistryWrite = false,
        ServiceConnect = false,
    });
    
    example, err := iot.NewSharedAccessPolicy(ctx, "sharedAccessPolicyResource", &iot.SharedAccessPolicyArgs{
    	IothubName:        pulumi.String("string"),
    	ResourceGroupName: pulumi.String("string"),
    	DeviceConnect:     pulumi.Bool(false),
    	Name:              pulumi.String("string"),
    	RegistryRead:      pulumi.Bool(false),
    	RegistryWrite:     pulumi.Bool(false),
    	ServiceConnect:    pulumi.Bool(false),
    })
    
    var sharedAccessPolicyResource = new SharedAccessPolicy("sharedAccessPolicyResource", SharedAccessPolicyArgs.builder()
        .iothubName("string")
        .resourceGroupName("string")
        .deviceConnect(false)
        .name("string")
        .registryRead(false)
        .registryWrite(false)
        .serviceConnect(false)
        .build());
    
    shared_access_policy_resource = azure.iot.SharedAccessPolicy("sharedAccessPolicyResource",
        iothub_name="string",
        resource_group_name="string",
        device_connect=False,
        name="string",
        registry_read=False,
        registry_write=False,
        service_connect=False)
    
    const sharedAccessPolicyResource = new azure.iot.SharedAccessPolicy("sharedAccessPolicyResource", {
        iothubName: "string",
        resourceGroupName: "string",
        deviceConnect: false,
        name: "string",
        registryRead: false,
        registryWrite: false,
        serviceConnect: false,
    });
    
    type: azure:iot:SharedAccessPolicy
    properties:
        deviceConnect: false
        iothubName: string
        name: string
        registryRead: false
        registryWrite: false
        resourceGroupName: string
        serviceConnect: false
    

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

    IothubName string
    The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group under which the IotHub Shared Access Policy resource has to be created. Changing this forces a new resource to be created.
    DeviceConnect bool
    Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.
    Name string
    Specifies the name of the IotHub Shared Access Policy resource. Changing this forces a new resource to be created.
    RegistryRead bool
    Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.
    RegistryWrite bool
    Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.
    ServiceConnect bool
    Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.
    IothubName string
    The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.
    ResourceGroupName string
    The name of the resource group under which the IotHub Shared Access Policy resource has to be created. Changing this forces a new resource to be created.
    DeviceConnect bool
    Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.
    Name string
    Specifies the name of the IotHub Shared Access Policy resource. Changing this forces a new resource to be created.
    RegistryRead bool
    Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.
    RegistryWrite bool
    Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.
    ServiceConnect bool
    Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.
    iothubName String
    The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group under which the IotHub Shared Access Policy resource has to be created. Changing this forces a new resource to be created.
    deviceConnect Boolean
    Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.
    name String
    Specifies the name of the IotHub Shared Access Policy resource. Changing this forces a new resource to be created.
    registryRead Boolean
    Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.
    registryWrite Boolean
    Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.
    serviceConnect Boolean
    Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.
    iothubName string
    The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.
    resourceGroupName string
    The name of the resource group under which the IotHub Shared Access Policy resource has to be created. Changing this forces a new resource to be created.
    deviceConnect boolean
    Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.
    name string
    Specifies the name of the IotHub Shared Access Policy resource. Changing this forces a new resource to be created.
    registryRead boolean
    Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.
    registryWrite boolean
    Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.
    serviceConnect boolean
    Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.
    iothub_name str
    The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.
    resource_group_name str
    The name of the resource group under which the IotHub Shared Access Policy resource has to be created. Changing this forces a new resource to be created.
    device_connect bool
    Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.
    name str
    Specifies the name of the IotHub Shared Access Policy resource. Changing this forces a new resource to be created.
    registry_read bool
    Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.
    registry_write bool
    Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.
    service_connect bool
    Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.
    iothubName String
    The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.
    resourceGroupName String
    The name of the resource group under which the IotHub Shared Access Policy resource has to be created. Changing this forces a new resource to be created.
    deviceConnect Boolean
    Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.
    name String
    Specifies the name of the IotHub Shared Access Policy resource. Changing this forces a new resource to be created.
    registryRead Boolean
    Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.
    registryWrite Boolean
    Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.
    serviceConnect Boolean
    Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SharedAccessPolicy resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    PrimaryConnectionString string
    The primary connection string of the Shared Access Policy.
    PrimaryKey string
    The primary key used to create the authentication token.
    SecondaryConnectionString string
    The secondary connection string of the Shared Access Policy.
    SecondaryKey string
    The secondary key used to create the authentication token.
    Id string
    The provider-assigned unique ID for this managed resource.
    PrimaryConnectionString string
    The primary connection string of the Shared Access Policy.
    PrimaryKey string
    The primary key used to create the authentication token.
    SecondaryConnectionString string
    The secondary connection string of the Shared Access Policy.
    SecondaryKey string
    The secondary key used to create the authentication token.
    id String
    The provider-assigned unique ID for this managed resource.
    primaryConnectionString String
    The primary connection string of the Shared Access Policy.
    primaryKey String
    The primary key used to create the authentication token.
    secondaryConnectionString String
    The secondary connection string of the Shared Access Policy.
    secondaryKey String
    The secondary key used to create the authentication token.
    id string
    The provider-assigned unique ID for this managed resource.
    primaryConnectionString string
    The primary connection string of the Shared Access Policy.
    primaryKey string
    The primary key used to create the authentication token.
    secondaryConnectionString string
    The secondary connection string of the Shared Access Policy.
    secondaryKey string
    The secondary key used to create the authentication token.
    id str
    The provider-assigned unique ID for this managed resource.
    primary_connection_string str
    The primary connection string of the Shared Access Policy.
    primary_key str
    The primary key used to create the authentication token.
    secondary_connection_string str
    The secondary connection string of the Shared Access Policy.
    secondary_key str
    The secondary key used to create the authentication token.
    id String
    The provider-assigned unique ID for this managed resource.
    primaryConnectionString String
    The primary connection string of the Shared Access Policy.
    primaryKey String
    The primary key used to create the authentication token.
    secondaryConnectionString String
    The secondary connection string of the Shared Access Policy.
    secondaryKey String
    The secondary key used to create the authentication token.

    Look up Existing SharedAccessPolicy Resource

    Get an existing SharedAccessPolicy 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?: SharedAccessPolicyState, opts?: CustomResourceOptions): SharedAccessPolicy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device_connect: Optional[bool] = None,
            iothub_name: Optional[str] = None,
            name: Optional[str] = None,
            primary_connection_string: Optional[str] = None,
            primary_key: Optional[str] = None,
            registry_read: Optional[bool] = None,
            registry_write: Optional[bool] = None,
            resource_group_name: Optional[str] = None,
            secondary_connection_string: Optional[str] = None,
            secondary_key: Optional[str] = None,
            service_connect: Optional[bool] = None) -> SharedAccessPolicy
    func GetSharedAccessPolicy(ctx *Context, name string, id IDInput, state *SharedAccessPolicyState, opts ...ResourceOption) (*SharedAccessPolicy, error)
    public static SharedAccessPolicy Get(string name, Input<string> id, SharedAccessPolicyState? state, CustomResourceOptions? opts = null)
    public static SharedAccessPolicy get(String name, Output<String> id, SharedAccessPolicyState state, CustomResourceOptions options)
    resources:  _:    type: azure:iot:SharedAccessPolicy    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:
    DeviceConnect bool
    Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.
    IothubName string
    The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the IotHub Shared Access Policy resource. Changing this forces a new resource to be created.
    PrimaryConnectionString string
    The primary connection string of the Shared Access Policy.
    PrimaryKey string
    The primary key used to create the authentication token.
    RegistryRead bool
    Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.
    RegistryWrite bool
    Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.
    ResourceGroupName string
    The name of the resource group under which the IotHub Shared Access Policy resource has to be created. Changing this forces a new resource to be created.
    SecondaryConnectionString string
    The secondary connection string of the Shared Access Policy.
    SecondaryKey string
    The secondary key used to create the authentication token.
    ServiceConnect bool
    Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.
    DeviceConnect bool
    Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.
    IothubName string
    The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.
    Name string
    Specifies the name of the IotHub Shared Access Policy resource. Changing this forces a new resource to be created.
    PrimaryConnectionString string
    The primary connection string of the Shared Access Policy.
    PrimaryKey string
    The primary key used to create the authentication token.
    RegistryRead bool
    Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.
    RegistryWrite bool
    Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.
    ResourceGroupName string
    The name of the resource group under which the IotHub Shared Access Policy resource has to be created. Changing this forces a new resource to be created.
    SecondaryConnectionString string
    The secondary connection string of the Shared Access Policy.
    SecondaryKey string
    The secondary key used to create the authentication token.
    ServiceConnect bool
    Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.
    deviceConnect Boolean
    Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.
    iothubName String
    The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.
    name String
    Specifies the name of the IotHub Shared Access Policy resource. Changing this forces a new resource to be created.
    primaryConnectionString String
    The primary connection string of the Shared Access Policy.
    primaryKey String
    The primary key used to create the authentication token.
    registryRead Boolean
    Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.
    registryWrite Boolean
    Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.
    resourceGroupName String
    The name of the resource group under which the IotHub Shared Access Policy resource has to be created. Changing this forces a new resource to be created.
    secondaryConnectionString String
    The secondary connection string of the Shared Access Policy.
    secondaryKey String
    The secondary key used to create the authentication token.
    serviceConnect Boolean
    Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.
    deviceConnect boolean
    Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.
    iothubName string
    The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.
    name string
    Specifies the name of the IotHub Shared Access Policy resource. Changing this forces a new resource to be created.
    primaryConnectionString string
    The primary connection string of the Shared Access Policy.
    primaryKey string
    The primary key used to create the authentication token.
    registryRead boolean
    Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.
    registryWrite boolean
    Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.
    resourceGroupName string
    The name of the resource group under which the IotHub Shared Access Policy resource has to be created. Changing this forces a new resource to be created.
    secondaryConnectionString string
    The secondary connection string of the Shared Access Policy.
    secondaryKey string
    The secondary key used to create the authentication token.
    serviceConnect boolean
    Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.
    device_connect bool
    Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.
    iothub_name str
    The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.
    name str
    Specifies the name of the IotHub Shared Access Policy resource. Changing this forces a new resource to be created.
    primary_connection_string str
    The primary connection string of the Shared Access Policy.
    primary_key str
    The primary key used to create the authentication token.
    registry_read bool
    Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.
    registry_write bool
    Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.
    resource_group_name str
    The name of the resource group under which the IotHub Shared Access Policy resource has to be created. Changing this forces a new resource to be created.
    secondary_connection_string str
    The secondary connection string of the Shared Access Policy.
    secondary_key str
    The secondary key used to create the authentication token.
    service_connect bool
    Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.
    deviceConnect Boolean
    Adds DeviceConnect permission to this Shared Access Account. It allows sending and receiving on the device-side endpoints.
    iothubName String
    The name of the IoTHub to which this Shared Access Policy belongs. Changing this forces a new resource to be created.
    name String
    Specifies the name of the IotHub Shared Access Policy resource. Changing this forces a new resource to be created.
    primaryConnectionString String
    The primary connection string of the Shared Access Policy.
    primaryKey String
    The primary key used to create the authentication token.
    registryRead Boolean
    Adds RegistryRead permission to this Shared Access Account. It allows read access to the identity registry.
    registryWrite Boolean
    Adds RegistryWrite permission to this Shared Access Account. It allows write access to the identity registry.
    resourceGroupName String
    The name of the resource group under which the IotHub Shared Access Policy resource has to be created. Changing this forces a new resource to be created.
    secondaryConnectionString String
    The secondary connection string of the Shared Access Policy.
    secondaryKey String
    The secondary key used to create the authentication token.
    serviceConnect Boolean
    Adds ServiceConnect permission to this Shared Access Account. It allows sending and receiving on the cloud-side endpoints.

    Import

    IoTHub Shared Access Policies can be imported using the resource id, e.g.

     $ pulumi import azure:iot/sharedAccessPolicy:SharedAccessPolicy shared_access_policy1 /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.Devices/IotHubs/hub1/IotHubKeys/shared_access_policy1
    

    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.