We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8fd548f commit aefffc0Copy full SHA for aefffc0
pkg/naming/convention.go
@@ -19,6 +19,7 @@ type namingConvention struct {
19
Case caseSensitivity
20
}
21
22
+// https://learn.microsoft.com/en-us/azure/azure-resource-manager/management/resource-name-rules
23
var namingConventions = []namingConvention{
24
{resources.ResourceGroup, 3, 90, true, true, true, CaseInsensitive},
25
{resources.SqlServer, 3, 63, true, true, false, LowerCase},
@@ -51,6 +52,7 @@ var namingConventions = []namingConvention{
51
52
{resources.StorageBackupVault, 2, 50, true, true, false, CaseInsensitive},
53
{resources.DataFactory, 3, 63, true, true, false, CaseInsensitive},
54
{resources.ElasticSearch, 3, 90, true, true, false, CaseInsensitive},
55
+ {resources.ServicebusNamespace, 6, 50, true, true, false, CaseInsensitive},
56
57
58
func findNamingConvention(resourceType resources.AzureResourceType) namingConvention {
pkg/naming/resources/azure_resource_type.go
@@ -34,4 +34,5 @@ const (
34
StorageBackupVault AzureResourceType = "sbv"
35
DataFactory AzureResourceType = "df"
36
ElasticSearch AzureResourceType = "es"
37
+ ServicebusNamespace AzureResourceType = "sbus"
38
)
0 commit comments