Skip to content

Commit

Permalink
201 configure azure infrastructure (#230)
Browse files Browse the repository at this point in the history
* refactor: Update Azure Bicep resource name parameter
  • Loading branch information
mlhaufe authored Jul 25, 2024
1 parent 990e9b0 commit c31a2f7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure/bicep/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ targetScope = 'resourceGroup'
// @allowed(['dev', 'prod'])
// param environment string = 'dev'
param location string = resourceGroup().location
param name string = 'final-hill-cathedral'
param name string = 'cathedral'
// param dockerComposeFile string

// Dummy for testing
resource stg 'Microsoft.Storage/storageAccounts@2023-04-01' = {
name: toLower('stg-${name}')
name: toLower('st-${name}')
location: location
sku: {
name: 'Standard_LRS'
Expand Down

0 comments on commit c31a2f7

Please sign in to comment.