You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Bicep.Core.UnitTests/Diagnostics/LinterRuleTests/NoHardcodedEnvironmentUrlsRuleTests.cs
+30Lines changed: 30 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -201,5 +201,35 @@ public void ExcludedHostsMatchingTest(string testString, bool isMatch)
201
201
}
202
202
});
203
203
}
204
+
205
+
[DataRow(0,@"
206
+
@description('Required. The full uri for the encrypt key from key vault. Example: https://<keyvaultname>.vault.azure.net/keys/<keyname>/<version>.')
207
+
param keyVaultUri string
208
+
")]
209
+
[DataRow(0,@"
210
+
@sys.description('Required. The full uri for the encrypt key from key vault. Example: https://<keyvaultname>.vault.azure.net/keys/<keyname>/<version>.')
211
+
param keyVaultUri string
212
+
")]
213
+
[DataRow(0,@"
214
+
@metadata({
215
+
description: 'Required. The full uri for the encrypt key from key vault. Example: https://<keyvaultname>.vault.azure.net/keys/<keyname>/<version>.'
216
+
})
217
+
param keyVaultUri string
218
+
")]
219
+
[DataRow(0,@"
220
+
@metadata({
221
+
description: 'Required. The full uri for the encrypt key from key vault. Example: https://<keyvaultname>.vault.azure.net/keys/<keyname>/<version>.',
0 commit comments