Skip to content

Commit

Permalink
creating bicep templates
Browse files Browse the repository at this point in the history
Signed-off-by: MD Ashique <[email protected]>
  • Loading branch information
ASHIQUEMD committed Sep 19, 2023
1 parent 44a94de commit 3e83d2d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions samples/sample-infra/azure-services.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ resource container 'Microsoft.Storage/storageAccounts/blobServices/containers@20
}
}

/* ###################################################################### */
// Create managed ACA environment
/* ###################################################################### */
resource logAnalyticsWorkspace'Microsoft.OperationalInsights/workspaces@2021-06-01' = {
name: '${envResourceNamePrefix}-la'
location: location
Expand All @@ -60,9 +63,6 @@ resource appInsights 'Microsoft.Insights/components@2020-02-02' = {
}
}

/* ###################################################################### */
// Create managed ACA environment
/* ###################################################################### */
resource environment 'Microsoft.App/managedEnvironments@2022-10-01' = {
name: '${envResourceNamePrefix}-env'
location: location
Expand Down Expand Up @@ -95,6 +95,9 @@ resource redisCache 'Microsoft.Cache/Redis@2020-06-01' = {
}
}

/* ###################################################################### */
// Create Azure EventHub
/* ###################################################################### */
resource eventHubNamespaceResource 'Microsoft.EventHub/namespaces@2021-11-01' = {
name: eventHubNamespace
location: location
Expand Down Expand Up @@ -122,9 +125,6 @@ resource eventHubAuth 'Microsoft.EventHub/namespaces/authorizationRules@2022-10-
}
}

/* ###################################################################### */
// Create Azure EventHub
/* ###################################################################### */
resource eventHub 'Microsoft.EventHub/namespaces/eventhubs@2021-11-01' = {
parent: eventHubNamespaceResource
name: eventHubName
Expand Down

0 comments on commit 3e83d2d

Please sign in to comment.