Skip to content

Commit

Permalink
adding required parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramkumar Chandrasekaran committed Nov 4, 2019
1 parent 32ff239 commit 37d20b1
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@
"value": "GEN-UNIQUE"
},
"AzureStorage_connectionString": {
"value": "GEN-UNIQUE"
"value": "GET-PREREQ-AzureStorage_connectionString"
},
"AzurePostgreSqlDatabase_connectionString": {
"value": "GEN-UNIQUE"
"value": "GET-PREREQ-AzurePostgreSqlDatabase_connectionString"
},
"blobContainer": {
"value": "adftutorial"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,15 @@
}
]
}
]
],
"outputs": {
"AzureStorage_connectionString": {
"type": "securestring",
"value": "[concat('DefaultEndpointsProtocol=https;AccountName=',variables('storageAccountName'),';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('storageAccountName')), '2019-04-01').keys[0].value)]"
},
"AzurePostgreSqlDatabase_connectionString": {
"type": "securestring",
"value": "[concat('Server=', variables('serverName'),'.postgres.database.azure.com;Port=5432;Database=postgres;UID=', parameters('serverAdminUsername'), ';Password=', parameters('serverAdminPassword'), ';SSL Mode=Require')]"
}
}
}

0 comments on commit 37d20b1

Please sign in to comment.