Skip to content

Commit

Permalink
201 configure azure infrastructure (#228)
Browse files Browse the repository at this point in the history
- removed debug step from pipeline
- update bicep resource name
  • Loading branch information
mlhaufe authored Jul 25, 2024
1 parent 3a11948 commit d007e8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions azure/bicep/main.bicep
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
targetScope = 'resourceGroup'

@allowed(['dev', 'prod'])
param environment string = 'dev'
// @allowed(['dev', 'prod'])
// param environment string = 'dev'
param location string = resourceGroup().location
param name string = 'final-hill-cathedral'
// param dockerComposeFile string

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

0 comments on commit d007e8d

Please sign in to comment.