Skip to content

Commit b42fed0

Browse files
authored
Create main.test.bicep
Signed-off-by: Anthony Shaw <anthony.p.shaw@gmail.com>
1 parent 16bcba4 commit b42fed0

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

infra/main.test.bicep

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
// This file is for doing static analysis and contains sensible defaults
2+
// for the bicep analyser to minimise false-positives and provide the best results.
3+
4+
// This file is not intended to be used as a runtime configuration file.
5+
6+
targetScope = 'subscription'
7+
8+
param environmentName string = 'testing'
9+
param location string = 'westus2'
10+
11+
module main 'main.bicep' = {
12+
name: 'main'
13+
params: {
14+
environmentName: environmentName
15+
location: location
16+
}
17+
}

0 commit comments

Comments
 (0)