We recommend using Azure Native.
azure.servicebus.Namespace
Explore with Pulumi AI
Manages a ServiceBus Namespace.
Example Usage
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new()
{
Location = "West Europe",
});
var exampleNamespace = new Azure.ServiceBus.Namespace("exampleNamespace", new()
{
Location = exampleResourceGroup.Location,
ResourceGroupName = exampleResourceGroup.Name,
Sku = "Standard",
Tags =
{
{ "source", "example" },
},
});
});
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v5/go/azure/servicebus"
"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
}
_, err = servicebus.NewNamespace(ctx, "exampleNamespace", &servicebus.NamespaceArgs{
Location: exampleResourceGroup.Location,
ResourceGroupName: exampleResourceGroup.Name,
Sku: pulumi.String("Standard"),
Tags: pulumi.StringMap{
"source": pulumi.String("example"),
},
})
if err != nil {
return err
}
return nil
})
}
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.servicebus.Namespace;
import com.pulumi.azure.servicebus.NamespaceArgs;
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 exampleResourceGroup = new ResourceGroup("exampleResourceGroup", ResourceGroupArgs.builder()
.location("West Europe")
.build());
var exampleNamespace = new Namespace("exampleNamespace", NamespaceArgs.builder()
.location(exampleResourceGroup.location())
.resourceGroupName(exampleResourceGroup.name())
.sku("Standard")
.tags(Map.of("source", "example"))
.build());
}
}
import pulumi
import pulumi_azure as azure
example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="West Europe")
example_namespace = azure.servicebus.Namespace("exampleNamespace",
location=example_resource_group.location,
resource_group_name=example_resource_group.name,
sku="Standard",
tags={
"source": "example",
})
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "West Europe"});
const exampleNamespace = new azure.servicebus.Namespace("exampleNamespace", {
location: exampleResourceGroup.location,
resourceGroupName: exampleResourceGroup.name,
sku: "Standard",
tags: {
source: "example",
},
});
resources:
exampleResourceGroup:
type: azure:core:ResourceGroup
properties:
location: West Europe
exampleNamespace:
type: azure:servicebus:Namespace
properties:
location: ${exampleResourceGroup.location}
resourceGroupName: ${exampleResourceGroup.name}
sku: Standard
tags:
source: example
Create Namespace Resource
new Namespace(name: string, args: NamespaceArgs, opts?: CustomResourceOptions);
@overload
def Namespace(resource_name: str,
opts: Optional[ResourceOptions] = None,
capacity: Optional[int] = None,
customer_managed_key: Optional[NamespaceCustomerManagedKeyArgs] = None,
identity: Optional[NamespaceIdentityArgs] = None,
local_auth_enabled: Optional[bool] = None,
location: Optional[str] = None,
minimum_tls_version: Optional[str] = None,
name: Optional[str] = None,
network_rule_set: Optional[NamespaceNetworkRuleSetArgs] = None,
public_network_access_enabled: Optional[bool] = None,
resource_group_name: Optional[str] = None,
sku: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
zone_redundant: Optional[bool] = None)
@overload
def Namespace(resource_name: str,
args: NamespaceArgs,
opts: Optional[ResourceOptions] = None)
func NewNamespace(ctx *Context, name string, args NamespaceArgs, opts ...ResourceOption) (*Namespace, error)
public Namespace(string name, NamespaceArgs args, CustomResourceOptions? opts = null)
public Namespace(String name, NamespaceArgs args)
public Namespace(String name, NamespaceArgs args, CustomResourceOptions options)
type: azure:servicebus:Namespace
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NamespaceArgs
- 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 NamespaceArgs
- 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 NamespaceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NamespaceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NamespaceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Namespace Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Namespace resource accepts the following input properties:
- Resource
Group stringName The name of the resource group in which to Changing this forces a new resource to be created. create the namespace.
- Sku string
Defines which tier to use. Options are
Basic
,Standard
orPremium
. Please note that setting this field toPremium
will force the creation of a new resource.- Capacity int
Specifies the capacity. When
sku
isPremium
, capacity can be1
,2
,4
,8
or16
. Whensku
isBasic
orStandard
, capacity can be0
only.- Customer
Managed NamespaceKey Customer Managed Key An
customer_managed_key
block as defined below.- Identity
Namespace
Identity An
identity
block as defined below.- Local
Auth boolEnabled Whether or not SAS authentication is enabled for the Service Bus namespace. Defaults to
true
.- Location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Minimum
Tls stringVersion The minimum supported TLS version for this Service Bus Namespace. Valid values are:
1.0
,1.1
and1.2
. The current default minimum TLS version is1.2
.- Name string
Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.
- Network
Rule NamespaceSet Network Rule Set An
network_rule_set
block as defined below.- Public
Network boolAccess Enabled Is public network access enabled for the Service Bus Namespace? Defaults to
true
.- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Zone
Redundant bool Whether or not this resource is zone redundant.
sku
needs to bePremium
. Changing this forces a new resource to be created.
- Resource
Group stringName The name of the resource group in which to Changing this forces a new resource to be created. create the namespace.
- Sku string
Defines which tier to use. Options are
Basic
,Standard
orPremium
. Please note that setting this field toPremium
will force the creation of a new resource.- Capacity int
Specifies the capacity. When
sku
isPremium
, capacity can be1
,2
,4
,8
or16
. Whensku
isBasic
orStandard
, capacity can be0
only.- Customer
Managed NamespaceKey Customer Managed Key Args An
customer_managed_key
block as defined below.- Identity
Namespace
Identity Args An
identity
block as defined below.- Local
Auth boolEnabled Whether or not SAS authentication is enabled for the Service Bus namespace. Defaults to
true
.- Location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Minimum
Tls stringVersion The minimum supported TLS version for this Service Bus Namespace. Valid values are:
1.0
,1.1
and1.2
. The current default minimum TLS version is1.2
.- Name string
Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.
- Network
Rule NamespaceSet Network Rule Set Type Args An
network_rule_set
block as defined below.- Public
Network boolAccess Enabled Is public network access enabled for the Service Bus Namespace? Defaults to
true
.- map[string]string
A mapping of tags to assign to the resource.
- Zone
Redundant bool Whether or not this resource is zone redundant.
sku
needs to bePremium
. Changing this forces a new resource to be created.
- resource
Group StringName The name of the resource group in which to Changing this forces a new resource to be created. create the namespace.
- sku String
Defines which tier to use. Options are
Basic
,Standard
orPremium
. Please note that setting this field toPremium
will force the creation of a new resource.- capacity Integer
Specifies the capacity. When
sku
isPremium
, capacity can be1
,2
,4
,8
or16
. Whensku
isBasic
orStandard
, capacity can be0
only.- customer
Managed NamespaceKey Customer Managed Key An
customer_managed_key
block as defined below.- identity
Namespace
Identity An
identity
block as defined below.- local
Auth BooleanEnabled Whether or not SAS authentication is enabled for the Service Bus namespace. Defaults to
true
.- location String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- minimum
Tls StringVersion The minimum supported TLS version for this Service Bus Namespace. Valid values are:
1.0
,1.1
and1.2
. The current default minimum TLS version is1.2
.- name String
Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.
- network
Rule NamespaceSet Network Rule Set An
network_rule_set
block as defined below.- public
Network BooleanAccess Enabled Is public network access enabled for the Service Bus Namespace? Defaults to
true
.- Map<String,String>
A mapping of tags to assign to the resource.
- zone
Redundant Boolean Whether or not this resource is zone redundant.
sku
needs to bePremium
. Changing this forces a new resource to be created.
- resource
Group stringName The name of the resource group in which to Changing this forces a new resource to be created. create the namespace.
- sku string
Defines which tier to use. Options are
Basic
,Standard
orPremium
. Please note that setting this field toPremium
will force the creation of a new resource.- capacity number
Specifies the capacity. When
sku
isPremium
, capacity can be1
,2
,4
,8
or16
. Whensku
isBasic
orStandard
, capacity can be0
only.- customer
Managed NamespaceKey Customer Managed Key An
customer_managed_key
block as defined below.- identity
Namespace
Identity An
identity
block as defined below.- local
Auth booleanEnabled Whether or not SAS authentication is enabled for the Service Bus namespace. Defaults to
true
.- location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- minimum
Tls stringVersion The minimum supported TLS version for this Service Bus Namespace. Valid values are:
1.0
,1.1
and1.2
. The current default minimum TLS version is1.2
.- name string
Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.
- network
Rule NamespaceSet Network Rule Set An
network_rule_set
block as defined below.- public
Network booleanAccess Enabled Is public network access enabled for the Service Bus Namespace? Defaults to
true
.- {[key: string]: string}
A mapping of tags to assign to the resource.
- zone
Redundant boolean Whether or not this resource is zone redundant.
sku
needs to bePremium
. Changing this forces a new resource to be created.
- resource_
group_ strname The name of the resource group in which to Changing this forces a new resource to be created. create the namespace.
- sku str
Defines which tier to use. Options are
Basic
,Standard
orPremium
. Please note that setting this field toPremium
will force the creation of a new resource.- capacity int
Specifies the capacity. When
sku
isPremium
, capacity can be1
,2
,4
,8
or16
. Whensku
isBasic
orStandard
, capacity can be0
only.- customer_
managed_ Namespacekey Customer Managed Key Args An
customer_managed_key
block as defined below.- identity
Namespace
Identity Args An
identity
block as defined below.- local_
auth_ boolenabled Whether or not SAS authentication is enabled for the Service Bus namespace. Defaults to
true
.- location str
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- minimum_
tls_ strversion The minimum supported TLS version for this Service Bus Namespace. Valid values are:
1.0
,1.1
and1.2
. The current default minimum TLS version is1.2
.- name str
Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.
- network_
rule_ Namespaceset Network Rule Set Args An
network_rule_set
block as defined below.- public_
network_ boolaccess_ enabled Is public network access enabled for the Service Bus Namespace? Defaults to
true
.- Mapping[str, str]
A mapping of tags to assign to the resource.
- zone_
redundant bool Whether or not this resource is zone redundant.
sku
needs to bePremium
. Changing this forces a new resource to be created.
- resource
Group StringName The name of the resource group in which to Changing this forces a new resource to be created. create the namespace.
- sku String
Defines which tier to use. Options are
Basic
,Standard
orPremium
. Please note that setting this field toPremium
will force the creation of a new resource.- capacity Number
Specifies the capacity. When
sku
isPremium
, capacity can be1
,2
,4
,8
or16
. Whensku
isBasic
orStandard
, capacity can be0
only.- customer
Managed Property MapKey An
customer_managed_key
block as defined below.- identity Property Map
An
identity
block as defined below.- local
Auth BooleanEnabled Whether or not SAS authentication is enabled for the Service Bus namespace. Defaults to
true
.- location String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- minimum
Tls StringVersion The minimum supported TLS version for this Service Bus Namespace. Valid values are:
1.0
,1.1
and1.2
. The current default minimum TLS version is1.2
.- name String
Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.
- network
Rule Property MapSet An
network_rule_set
block as defined below.- public
Network BooleanAccess Enabled Is public network access enabled for the Service Bus Namespace? Defaults to
true
.- Map<String>
A mapping of tags to assign to the resource.
- zone
Redundant Boolean Whether or not this resource is zone redundant.
sku
needs to bePremium
. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the Namespace resource produces the following output properties:
- Default
Primary stringConnection String The primary connection string for the authorization rule
RootManageSharedAccessKey
.- Default
Primary stringKey The primary access key for the authorization rule
RootManageSharedAccessKey
.- Default
Secondary stringConnection String The secondary connection string for the authorization rule
RootManageSharedAccessKey
.- Default
Secondary stringKey The secondary access key for the authorization rule
RootManageSharedAccessKey
.- Endpoint string
The URL to access the ServiceBus Namespace.
- Id string
The provider-assigned unique ID for this managed resource.
- Default
Primary stringConnection String The primary connection string for the authorization rule
RootManageSharedAccessKey
.- Default
Primary stringKey The primary access key for the authorization rule
RootManageSharedAccessKey
.- Default
Secondary stringConnection String The secondary connection string for the authorization rule
RootManageSharedAccessKey
.- Default
Secondary stringKey The secondary access key for the authorization rule
RootManageSharedAccessKey
.- Endpoint string
The URL to access the ServiceBus Namespace.
- Id string
The provider-assigned unique ID for this managed resource.
- default
Primary StringConnection String The primary connection string for the authorization rule
RootManageSharedAccessKey
.- default
Primary StringKey The primary access key for the authorization rule
RootManageSharedAccessKey
.- default
Secondary StringConnection String The secondary connection string for the authorization rule
RootManageSharedAccessKey
.- default
Secondary StringKey The secondary access key for the authorization rule
RootManageSharedAccessKey
.- endpoint String
The URL to access the ServiceBus Namespace.
- id String
The provider-assigned unique ID for this managed resource.
- default
Primary stringConnection String The primary connection string for the authorization rule
RootManageSharedAccessKey
.- default
Primary stringKey The primary access key for the authorization rule
RootManageSharedAccessKey
.- default
Secondary stringConnection String The secondary connection string for the authorization rule
RootManageSharedAccessKey
.- default
Secondary stringKey The secondary access key for the authorization rule
RootManageSharedAccessKey
.- endpoint string
The URL to access the ServiceBus Namespace.
- id string
The provider-assigned unique ID for this managed resource.
- default_
primary_ strconnection_ string The primary connection string for the authorization rule
RootManageSharedAccessKey
.- default_
primary_ strkey The primary access key for the authorization rule
RootManageSharedAccessKey
.- default_
secondary_ strconnection_ string The secondary connection string for the authorization rule
RootManageSharedAccessKey
.- default_
secondary_ strkey The secondary access key for the authorization rule
RootManageSharedAccessKey
.- endpoint str
The URL to access the ServiceBus Namespace.
- id str
The provider-assigned unique ID for this managed resource.
- default
Primary StringConnection String The primary connection string for the authorization rule
RootManageSharedAccessKey
.- default
Primary StringKey The primary access key for the authorization rule
RootManageSharedAccessKey
.- default
Secondary StringConnection String The secondary connection string for the authorization rule
RootManageSharedAccessKey
.- default
Secondary StringKey The secondary access key for the authorization rule
RootManageSharedAccessKey
.- endpoint String
The URL to access the ServiceBus Namespace.
- id String
The provider-assigned unique ID for this managed resource.
Look up Existing Namespace Resource
Get an existing Namespace 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?: NamespaceState, opts?: CustomResourceOptions): Namespace
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
capacity: Optional[int] = None,
customer_managed_key: Optional[NamespaceCustomerManagedKeyArgs] = None,
default_primary_connection_string: Optional[str] = None,
default_primary_key: Optional[str] = None,
default_secondary_connection_string: Optional[str] = None,
default_secondary_key: Optional[str] = None,
endpoint: Optional[str] = None,
identity: Optional[NamespaceIdentityArgs] = None,
local_auth_enabled: Optional[bool] = None,
location: Optional[str] = None,
minimum_tls_version: Optional[str] = None,
name: Optional[str] = None,
network_rule_set: Optional[NamespaceNetworkRuleSetArgs] = None,
public_network_access_enabled: Optional[bool] = None,
resource_group_name: Optional[str] = None,
sku: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None,
zone_redundant: Optional[bool] = None) -> Namespace
func GetNamespace(ctx *Context, name string, id IDInput, state *NamespaceState, opts ...ResourceOption) (*Namespace, error)
public static Namespace Get(string name, Input<string> id, NamespaceState? state, CustomResourceOptions? opts = null)
public static Namespace get(String name, Output<String> id, NamespaceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Capacity int
Specifies the capacity. When
sku
isPremium
, capacity can be1
,2
,4
,8
or16
. Whensku
isBasic
orStandard
, capacity can be0
only.- Customer
Managed NamespaceKey Customer Managed Key An
customer_managed_key
block as defined below.- Default
Primary stringConnection String The primary connection string for the authorization rule
RootManageSharedAccessKey
.- Default
Primary stringKey The primary access key for the authorization rule
RootManageSharedAccessKey
.- Default
Secondary stringConnection String The secondary connection string for the authorization rule
RootManageSharedAccessKey
.- Default
Secondary stringKey The secondary access key for the authorization rule
RootManageSharedAccessKey
.- Endpoint string
The URL to access the ServiceBus Namespace.
- Identity
Namespace
Identity An
identity
block as defined below.- Local
Auth boolEnabled Whether or not SAS authentication is enabled for the Service Bus namespace. Defaults to
true
.- Location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Minimum
Tls stringVersion The minimum supported TLS version for this Service Bus Namespace. Valid values are:
1.0
,1.1
and1.2
. The current default minimum TLS version is1.2
.- Name string
Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.
- Network
Rule NamespaceSet Network Rule Set An
network_rule_set
block as defined below.- Public
Network boolAccess Enabled Is public network access enabled for the Service Bus Namespace? Defaults to
true
.- Resource
Group stringName The name of the resource group in which to Changing this forces a new resource to be created. create the namespace.
- Sku string
Defines which tier to use. Options are
Basic
,Standard
orPremium
. Please note that setting this field toPremium
will force the creation of a new resource.- Dictionary<string, string>
A mapping of tags to assign to the resource.
- Zone
Redundant bool Whether or not this resource is zone redundant.
sku
needs to bePremium
. Changing this forces a new resource to be created.
- Capacity int
Specifies the capacity. When
sku
isPremium
, capacity can be1
,2
,4
,8
or16
. Whensku
isBasic
orStandard
, capacity can be0
only.- Customer
Managed NamespaceKey Customer Managed Key Args An
customer_managed_key
block as defined below.- Default
Primary stringConnection String The primary connection string for the authorization rule
RootManageSharedAccessKey
.- Default
Primary stringKey The primary access key for the authorization rule
RootManageSharedAccessKey
.- Default
Secondary stringConnection String The secondary connection string for the authorization rule
RootManageSharedAccessKey
.- Default
Secondary stringKey The secondary access key for the authorization rule
RootManageSharedAccessKey
.- Endpoint string
The URL to access the ServiceBus Namespace.
- Identity
Namespace
Identity Args An
identity
block as defined below.- Local
Auth boolEnabled Whether or not SAS authentication is enabled for the Service Bus namespace. Defaults to
true
.- Location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- Minimum
Tls stringVersion The minimum supported TLS version for this Service Bus Namespace. Valid values are:
1.0
,1.1
and1.2
. The current default minimum TLS version is1.2
.- Name string
Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.
- Network
Rule NamespaceSet Network Rule Set Type Args An
network_rule_set
block as defined below.- Public
Network boolAccess Enabled Is public network access enabled for the Service Bus Namespace? Defaults to
true
.- Resource
Group stringName The name of the resource group in which to Changing this forces a new resource to be created. create the namespace.
- Sku string
Defines which tier to use. Options are
Basic
,Standard
orPremium
. Please note that setting this field toPremium
will force the creation of a new resource.- map[string]string
A mapping of tags to assign to the resource.
- Zone
Redundant bool Whether or not this resource is zone redundant.
sku
needs to bePremium
. Changing this forces a new resource to be created.
- capacity Integer
Specifies the capacity. When
sku
isPremium
, capacity can be1
,2
,4
,8
or16
. Whensku
isBasic
orStandard
, capacity can be0
only.- customer
Managed NamespaceKey Customer Managed Key An
customer_managed_key
block as defined below.- default
Primary StringConnection String The primary connection string for the authorization rule
RootManageSharedAccessKey
.- default
Primary StringKey The primary access key for the authorization rule
RootManageSharedAccessKey
.- default
Secondary StringConnection String The secondary connection string for the authorization rule
RootManageSharedAccessKey
.- default
Secondary StringKey The secondary access key for the authorization rule
RootManageSharedAccessKey
.- endpoint String
The URL to access the ServiceBus Namespace.
- identity
Namespace
Identity An
identity
block as defined below.- local
Auth BooleanEnabled Whether or not SAS authentication is enabled for the Service Bus namespace. Defaults to
true
.- location String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- minimum
Tls StringVersion The minimum supported TLS version for this Service Bus Namespace. Valid values are:
1.0
,1.1
and1.2
. The current default minimum TLS version is1.2
.- name String
Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.
- network
Rule NamespaceSet Network Rule Set An
network_rule_set
block as defined below.- public
Network BooleanAccess Enabled Is public network access enabled for the Service Bus Namespace? Defaults to
true
.- resource
Group StringName The name of the resource group in which to Changing this forces a new resource to be created. create the namespace.
- sku String
Defines which tier to use. Options are
Basic
,Standard
orPremium
. Please note that setting this field toPremium
will force the creation of a new resource.- Map<String,String>
A mapping of tags to assign to the resource.
- zone
Redundant Boolean Whether or not this resource is zone redundant.
sku
needs to bePremium
. Changing this forces a new resource to be created.
- capacity number
Specifies the capacity. When
sku
isPremium
, capacity can be1
,2
,4
,8
or16
. Whensku
isBasic
orStandard
, capacity can be0
only.- customer
Managed NamespaceKey Customer Managed Key An
customer_managed_key
block as defined below.- default
Primary stringConnection String The primary connection string for the authorization rule
RootManageSharedAccessKey
.- default
Primary stringKey The primary access key for the authorization rule
RootManageSharedAccessKey
.- default
Secondary stringConnection String The secondary connection string for the authorization rule
RootManageSharedAccessKey
.- default
Secondary stringKey The secondary access key for the authorization rule
RootManageSharedAccessKey
.- endpoint string
The URL to access the ServiceBus Namespace.
- identity
Namespace
Identity An
identity
block as defined below.- local
Auth booleanEnabled Whether or not SAS authentication is enabled for the Service Bus namespace. Defaults to
true
.- location string
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- minimum
Tls stringVersion The minimum supported TLS version for this Service Bus Namespace. Valid values are:
1.0
,1.1
and1.2
. The current default minimum TLS version is1.2
.- name string
Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.
- network
Rule NamespaceSet Network Rule Set An
network_rule_set
block as defined below.- public
Network booleanAccess Enabled Is public network access enabled for the Service Bus Namespace? Defaults to
true
.- resource
Group stringName The name of the resource group in which to Changing this forces a new resource to be created. create the namespace.
- sku string
Defines which tier to use. Options are
Basic
,Standard
orPremium
. Please note that setting this field toPremium
will force the creation of a new resource.- {[key: string]: string}
A mapping of tags to assign to the resource.
- zone
Redundant boolean Whether or not this resource is zone redundant.
sku
needs to bePremium
. Changing this forces a new resource to be created.
- capacity int
Specifies the capacity. When
sku
isPremium
, capacity can be1
,2
,4
,8
or16
. Whensku
isBasic
orStandard
, capacity can be0
only.- customer_
managed_ Namespacekey Customer Managed Key Args An
customer_managed_key
block as defined below.- default_
primary_ strconnection_ string The primary connection string for the authorization rule
RootManageSharedAccessKey
.- default_
primary_ strkey The primary access key for the authorization rule
RootManageSharedAccessKey
.- default_
secondary_ strconnection_ string The secondary connection string for the authorization rule
RootManageSharedAccessKey
.- default_
secondary_ strkey The secondary access key for the authorization rule
RootManageSharedAccessKey
.- endpoint str
The URL to access the ServiceBus Namespace.
- identity
Namespace
Identity Args An
identity
block as defined below.- local_
auth_ boolenabled Whether or not SAS authentication is enabled for the Service Bus namespace. Defaults to
true
.- location str
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- minimum_
tls_ strversion The minimum supported TLS version for this Service Bus Namespace. Valid values are:
1.0
,1.1
and1.2
. The current default minimum TLS version is1.2
.- name str
Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.
- network_
rule_ Namespaceset Network Rule Set Args An
network_rule_set
block as defined below.- public_
network_ boolaccess_ enabled Is public network access enabled for the Service Bus Namespace? Defaults to
true
.- resource_
group_ strname The name of the resource group in which to Changing this forces a new resource to be created. create the namespace.
- sku str
Defines which tier to use. Options are
Basic
,Standard
orPremium
. Please note that setting this field toPremium
will force the creation of a new resource.- Mapping[str, str]
A mapping of tags to assign to the resource.
- zone_
redundant bool Whether or not this resource is zone redundant.
sku
needs to bePremium
. Changing this forces a new resource to be created.
- capacity Number
Specifies the capacity. When
sku
isPremium
, capacity can be1
,2
,4
,8
or16
. Whensku
isBasic
orStandard
, capacity can be0
only.- customer
Managed Property MapKey An
customer_managed_key
block as defined below.- default
Primary StringConnection String The primary connection string for the authorization rule
RootManageSharedAccessKey
.- default
Primary StringKey The primary access key for the authorization rule
RootManageSharedAccessKey
.- default
Secondary StringConnection String The secondary connection string for the authorization rule
RootManageSharedAccessKey
.- default
Secondary StringKey The secondary access key for the authorization rule
RootManageSharedAccessKey
.- endpoint String
The URL to access the ServiceBus Namespace.
- identity Property Map
An
identity
block as defined below.- local
Auth BooleanEnabled Whether or not SAS authentication is enabled for the Service Bus namespace. Defaults to
true
.- location String
Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.
- minimum
Tls StringVersion The minimum supported TLS version for this Service Bus Namespace. Valid values are:
1.0
,1.1
and1.2
. The current default minimum TLS version is1.2
.- name String
Specifies the name of the ServiceBus Namespace resource . Changing this forces a new resource to be created.
- network
Rule Property MapSet An
network_rule_set
block as defined below.- public
Network BooleanAccess Enabled Is public network access enabled for the Service Bus Namespace? Defaults to
true
.- resource
Group StringName The name of the resource group in which to Changing this forces a new resource to be created. create the namespace.
- sku String
Defines which tier to use. Options are
Basic
,Standard
orPremium
. Please note that setting this field toPremium
will force the creation of a new resource.- Map<String>
A mapping of tags to assign to the resource.
- zone
Redundant Boolean Whether or not this resource is zone redundant.
sku
needs to bePremium
. Changing this forces a new resource to be created.
Supporting Types
NamespaceCustomerManagedKey, NamespaceCustomerManagedKeyArgs
- Identity
Id string The ID of the User Assigned Identity that has access to the key.
- Key
Vault stringKey Id The ID of the Key Vault Key which should be used to Encrypt the data in this ServiceBus Namespace.
- Infrastructure
Encryption boolEnabled Used to specify whether enable Infrastructure Encryption (Double Encryption). Changing this forces a new resource to be created.
- Identity
Id string The ID of the User Assigned Identity that has access to the key.
- Key
Vault stringKey Id The ID of the Key Vault Key which should be used to Encrypt the data in this ServiceBus Namespace.
- Infrastructure
Encryption boolEnabled Used to specify whether enable Infrastructure Encryption (Double Encryption). Changing this forces a new resource to be created.
- identity
Id String The ID of the User Assigned Identity that has access to the key.
- key
Vault StringKey Id The ID of the Key Vault Key which should be used to Encrypt the data in this ServiceBus Namespace.
- infrastructure
Encryption BooleanEnabled Used to specify whether enable Infrastructure Encryption (Double Encryption). Changing this forces a new resource to be created.
- identity
Id string The ID of the User Assigned Identity that has access to the key.
- key
Vault stringKey Id The ID of the Key Vault Key which should be used to Encrypt the data in this ServiceBus Namespace.
- infrastructure
Encryption booleanEnabled Used to specify whether enable Infrastructure Encryption (Double Encryption). Changing this forces a new resource to be created.
- identity_
id str The ID of the User Assigned Identity that has access to the key.
- key_
vault_ strkey_ id The ID of the Key Vault Key which should be used to Encrypt the data in this ServiceBus Namespace.
- infrastructure_
encryption_ boolenabled Used to specify whether enable Infrastructure Encryption (Double Encryption). Changing this forces a new resource to be created.
- identity
Id String The ID of the User Assigned Identity that has access to the key.
- key
Vault StringKey Id The ID of the Key Vault Key which should be used to Encrypt the data in this ServiceBus Namespace.
- infrastructure
Encryption BooleanEnabled Used to specify whether enable Infrastructure Encryption (Double Encryption). Changing this forces a new resource to be created.
NamespaceIdentity, NamespaceIdentityArgs
- Type string
Specifies the type of Managed Service Identity that should be configured on this ServiceBus Namespace. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both).- Identity
Ids List<string> Specifies a list of User Assigned Managed Identity IDs to be assigned to this ServiceBus namespace.
NOTE: This is required when
type
is set toUserAssigned
orSystemAssigned, UserAssigned
.- Principal
Id string The Principal ID for the Service Principal associated with the Managed Service Identity of this ServiceBus Namespace.
- Tenant
Id string The Tenant ID for the Service Principal associated with the Managed Service Identity of this ServiceBus Namespace.
- Type string
Specifies the type of Managed Service Identity that should be configured on this ServiceBus Namespace. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both).- Identity
Ids []string Specifies a list of User Assigned Managed Identity IDs to be assigned to this ServiceBus namespace.
NOTE: This is required when
type
is set toUserAssigned
orSystemAssigned, UserAssigned
.- Principal
Id string The Principal ID for the Service Principal associated with the Managed Service Identity of this ServiceBus Namespace.
- Tenant
Id string The Tenant ID for the Service Principal associated with the Managed Service Identity of this ServiceBus Namespace.
- type String
Specifies the type of Managed Service Identity that should be configured on this ServiceBus Namespace. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both).- identity
Ids List<String> Specifies a list of User Assigned Managed Identity IDs to be assigned to this ServiceBus namespace.
NOTE: This is required when
type
is set toUserAssigned
orSystemAssigned, UserAssigned
.- principal
Id String The Principal ID for the Service Principal associated with the Managed Service Identity of this ServiceBus Namespace.
- tenant
Id String The Tenant ID for the Service Principal associated with the Managed Service Identity of this ServiceBus Namespace.
- type string
Specifies the type of Managed Service Identity that should be configured on this ServiceBus Namespace. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both).- identity
Ids string[] Specifies a list of User Assigned Managed Identity IDs to be assigned to this ServiceBus namespace.
NOTE: This is required when
type
is set toUserAssigned
orSystemAssigned, UserAssigned
.- principal
Id string The Principal ID for the Service Principal associated with the Managed Service Identity of this ServiceBus Namespace.
- tenant
Id string The Tenant ID for the Service Principal associated with the Managed Service Identity of this ServiceBus Namespace.
- type str
Specifies the type of Managed Service Identity that should be configured on this ServiceBus Namespace. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both).- identity_
ids Sequence[str] Specifies a list of User Assigned Managed Identity IDs to be assigned to this ServiceBus namespace.
NOTE: This is required when
type
is set toUserAssigned
orSystemAssigned, UserAssigned
.- principal_
id str The Principal ID for the Service Principal associated with the Managed Service Identity of this ServiceBus Namespace.
- tenant_
id str The Tenant ID for the Service Principal associated with the Managed Service Identity of this ServiceBus Namespace.
- type String
Specifies the type of Managed Service Identity that should be configured on this ServiceBus Namespace. Possible values are
SystemAssigned
,UserAssigned
,SystemAssigned, UserAssigned
(to enable both).- identity
Ids List<String> Specifies a list of User Assigned Managed Identity IDs to be assigned to this ServiceBus namespace.
NOTE: This is required when
type
is set toUserAssigned
orSystemAssigned, UserAssigned
.- principal
Id String The Principal ID for the Service Principal associated with the Managed Service Identity of this ServiceBus Namespace.
- tenant
Id String The Tenant ID for the Service Principal associated with the Managed Service Identity of this ServiceBus Namespace.
NamespaceNetworkRuleSet, NamespaceNetworkRuleSetArgs
- Default
Action string Specifies the default action for the Network Rule Set. Possible values are
Allow
andDeny
. Defaults toDeny
.- Ip
Rules List<string> One or more IP Addresses, or CIDR Blocks which should be able to access the ServiceBus Namespace.
- Network
Rules List<NamespaceNetwork Rule Set Network Rule> One or more
network_rules
blocks as defined below.- Public
Network boolAccess Enabled Whether to allow traffic over public network. Possible values are
true
andfalse
. Defaults totrue
.- Trusted
Services boolAllowed Are Azure Services that are known and trusted for this resource type are allowed to bypass firewall configuration? See Trusted Microsoft Services
- Default
Action string Specifies the default action for the Network Rule Set. Possible values are
Allow
andDeny
. Defaults toDeny
.- Ip
Rules []string One or more IP Addresses, or CIDR Blocks which should be able to access the ServiceBus Namespace.
- Network
Rules []NamespaceNetwork Rule Set Network Rule One or more
network_rules
blocks as defined below.- Public
Network boolAccess Enabled Whether to allow traffic over public network. Possible values are
true
andfalse
. Defaults totrue
.- Trusted
Services boolAllowed Are Azure Services that are known and trusted for this resource type are allowed to bypass firewall configuration? See Trusted Microsoft Services
- default
Action String Specifies the default action for the Network Rule Set. Possible values are
Allow
andDeny
. Defaults toDeny
.- ip
Rules List<String> One or more IP Addresses, or CIDR Blocks which should be able to access the ServiceBus Namespace.
- network
Rules List<NamespaceNetwork Rule Set Network Rule> One or more
network_rules
blocks as defined below.- public
Network BooleanAccess Enabled Whether to allow traffic over public network. Possible values are
true
andfalse
. Defaults totrue
.- trusted
Services BooleanAllowed Are Azure Services that are known and trusted for this resource type are allowed to bypass firewall configuration? See Trusted Microsoft Services
- default
Action string Specifies the default action for the Network Rule Set. Possible values are
Allow
andDeny
. Defaults toDeny
.- ip
Rules string[] One or more IP Addresses, or CIDR Blocks which should be able to access the ServiceBus Namespace.
- network
Rules NamespaceNetwork Rule Set Network Rule[] One or more
network_rules
blocks as defined below.- public
Network booleanAccess Enabled Whether to allow traffic over public network. Possible values are
true
andfalse
. Defaults totrue
.- trusted
Services booleanAllowed Are Azure Services that are known and trusted for this resource type are allowed to bypass firewall configuration? See Trusted Microsoft Services
- default_
action str Specifies the default action for the Network Rule Set. Possible values are
Allow
andDeny
. Defaults toDeny
.- ip_
rules Sequence[str] One or more IP Addresses, or CIDR Blocks which should be able to access the ServiceBus Namespace.
- network_
rules Sequence[NamespaceNetwork Rule Set Network Rule] One or more
network_rules
blocks as defined below.- public_
network_ boolaccess_ enabled Whether to allow traffic over public network. Possible values are
true
andfalse
. Defaults totrue
.- trusted_
services_ boolallowed Are Azure Services that are known and trusted for this resource type are allowed to bypass firewall configuration? See Trusted Microsoft Services
- default
Action String Specifies the default action for the Network Rule Set. Possible values are
Allow
andDeny
. Defaults toDeny
.- ip
Rules List<String> One or more IP Addresses, or CIDR Blocks which should be able to access the ServiceBus Namespace.
- network
Rules List<Property Map> One or more
network_rules
blocks as defined below.- public
Network BooleanAccess Enabled Whether to allow traffic over public network. Possible values are
true
andfalse
. Defaults totrue
.- trusted
Services BooleanAllowed Are Azure Services that are known and trusted for this resource type are allowed to bypass firewall configuration? See Trusted Microsoft Services
NamespaceNetworkRuleSetNetworkRule, NamespaceNetworkRuleSetNetworkRuleArgs
- Subnet
Id string The Subnet ID which should be able to access this ServiceBus Namespace.
- Ignore
Missing boolVnet Service Endpoint Should the ServiceBus Namespace Network Rule Set ignore missing Virtual Network Service Endpoint option in the Subnet? Defaults to
false
.
- Subnet
Id string The Subnet ID which should be able to access this ServiceBus Namespace.
- Ignore
Missing boolVnet Service Endpoint Should the ServiceBus Namespace Network Rule Set ignore missing Virtual Network Service Endpoint option in the Subnet? Defaults to
false
.
- subnet
Id String The Subnet ID which should be able to access this ServiceBus Namespace.
- ignore
Missing BooleanVnet Service Endpoint Should the ServiceBus Namespace Network Rule Set ignore missing Virtual Network Service Endpoint option in the Subnet? Defaults to
false
.
- subnet
Id string The Subnet ID which should be able to access this ServiceBus Namespace.
- ignore
Missing booleanVnet Service Endpoint Should the ServiceBus Namespace Network Rule Set ignore missing Virtual Network Service Endpoint option in the Subnet? Defaults to
false
.
- subnet_
id str The Subnet ID which should be able to access this ServiceBus Namespace.
- ignore_
missing_ boolvnet_ service_ endpoint Should the ServiceBus Namespace Network Rule Set ignore missing Virtual Network Service Endpoint option in the Subnet? Defaults to
false
.
- subnet
Id String The Subnet ID which should be able to access this ServiceBus Namespace.
- ignore
Missing BooleanVnet Service Endpoint Should the ServiceBus Namespace Network Rule Set ignore missing Virtual Network Service Endpoint option in the Subnet? Defaults to
false
.
Import
Service Bus Namespace can be imported using the resource id
, e.g.
$ pulumi import azure:servicebus/namespace:Namespace example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mygroup1/providers/Microsoft.ServiceBus/namespaces/sbns1
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
azurerm
Terraform Provider.