-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(azure): add azure service bus (#601)
Creates the ServiceBus resource in Azure. This would be the place to define queues/topics/subscriptions as well, so we need to figure out pattern/queues/subscriptions/topics as well later. I can take that with @MagnusSandgren next time he's on :)
- Loading branch information
Showing
6 changed files
with
58 additions
and
0 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
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
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
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
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
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 @@ | ||
param namePrefix string | ||
param location string | ||
|
||
@export() | ||
type Sku = { | ||
name: 'Basic' | 'Standard' | 'Premium' | ||
tier: 'Basic' | 'Standard' | 'Premium' | ||
@minValue(1) | ||
capacity: int | ||
} | ||
param sku Sku | ||
|
||
resource serviceBusNamespace 'Microsoft.ServiceBus/namespaces@2022-10-01-preview' = { | ||
name: '${namePrefix}-service-bus' | ||
location: location | ||
sku: sku | ||
identity: { | ||
type: 'SystemAssigned' | ||
} | ||
properties: {} | ||
} |