-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stephen Weatherford
committed
Nov 10, 2021
1 parent
63a091b
commit 1c95e7d
Showing
2 changed files
with
1,511 additions
and
901 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#", | ||
"contentVersion": "1.0.0.0", | ||
"metadata": { | ||
"prefix": "arm-servicebus-namespace", | ||
"description": "ServiceBus Namespace" | ||
}, | ||
"resources": [ | ||
{ | ||
"name": "${1:serviceBusNamespace1}", | ||
"type": "Microsoft.ServiceBus/namespaces", | ||
"apiVersion": "2021-01-01-preview", | ||
"location": /*${2|parameters('location'),resourceGroup().location|}*/ "location", | ||
"sku": { | ||
"name": "Standard" | ||
}, | ||
"properties": { | ||
} | ||
} | ||
] | ||
} |
Oops, something went wrong.