Skip to content

Commit

Permalink
Set pgsqlAdminPassword parameter as securestring (#1188)
Browse files Browse the repository at this point in the history
  • Loading branch information
hocinehacherouf authored and kbeaugrand committed Sep 9, 2022
1 parent fb635de commit f66e568
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion templates/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
},
"pgsqlAdminPassword": {
"type": "string",
"type": "securestring",
"metadata": {
"description": "PostgreSQL password"
}
Expand Down
2 changes: 1 addition & 1 deletion templates/portalDeployWithLoRa.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}
},
"pgsqlAdminPassword": {
"type": "string",
"type": "securestring",
"defaultValue": "[concat(uniqueString(resourceGroup().id, newGuid()), 'x', '!')]",
"metadata": {
"description": "PostgreSQL password"
Expand Down
2 changes: 1 addition & 1 deletion templates/portalDeployWithoutLoRa.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
}
},
"pgsqlAdminPassword": {
"type": "string",
"type": "securestring",
"defaultValue": "[concat(uniqueString(resourceGroup().id, newGuid()), 'x', '!')]",
"metadata": {
"description": "PostgreSQL password"
Expand Down

0 comments on commit f66e568

Please sign in to comment.