We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16bcba4 commit b42fed0Copy full SHA for b42fed0
infra/main.test.bicep
@@ -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