Skip to content

Commit

Permalink
Create main.test.bicep
Browse files Browse the repository at this point in the history
Signed-off-by: Anthony Shaw <[email protected]>
  • Loading branch information
tonybaloney authored Jun 6, 2024
1 parent 16bcba4 commit b42fed0
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions infra/main.test.bicep
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
// This file is for doing static analysis and contains sensible defaults
// for the bicep analyser to minimise false-positives and provide the best results.

// This file is not intended to be used as a runtime configuration file.

targetScope = 'subscription'

param environmentName string = 'testing'
param location string = 'westus2'

module main 'main.bicep' = {
name: 'main'
params: {
environmentName: environmentName
location: location
}
}

0 comments on commit b42fed0

Please sign in to comment.