Skip to content

Commit 9d70824

Browse files
Merge pull request #323 from microsoft/psl-envname-length
fix: Environment name min length updated to 20
2 parents a15ce4f + 5c86eb9 commit 9d70824

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

infra/main.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
targetScope = 'resourceGroup'
33

44
@minLength(3)
5-
@maxLength(10)
5+
@maxLength(20)
66
@description('A unique prefix for all resources in this deployment. This should be 3-10 characters long:')
77
param environmentName string
88

infra/main.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
"_generator": {
66
"name": "bicep",
77
"version": "0.34.1.11899",
8-
"templateHash": "3385834780038216651"
8+
"templateHash": "6939886522036033725"
99
}
1010
},
1111
"parameters": {
1212
"environmentName": {
1313
"type": "string",
1414
"minLength": 3,
15-
"maxLength": 10,
15+
"maxLength": 20,
1616
"metadata": {
1717
"description": "A unique prefix for all resources in this deployment. This should be 3-10 characters long:"
1818
}
@@ -1697,7 +1697,7 @@
16971697
"_generator": {
16981698
"name": "bicep",
16991699
"version": "0.34.1.11899",
1700-
"templateHash": "8749313878807873763"
1700+
"templateHash": "11157199356947505887"
17011701
}
17021702
},
17031703
"parameters": {
@@ -1786,7 +1786,7 @@
17861786
"databaseAccountOfferType": "Standard",
17871787
"enableAutomaticFailover": false,
17881788
"enableMultipleWriteLocations": false,
1789-
"disableLocalAuth": false,
1789+
"disableLocalAuth": true,
17901790
"apiProperties": "[if(equals(parameters('kind'), 'MongoDB'), createObject('serverVersion', '4.0'), createObject())]",
17911791
"capabilities": [
17921792
{

0 commit comments

Comments
 (0)