Skip to content

Commit

Permalink
Fix missing paren
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeEvansLarah committed Jan 15, 2020
1 parent 58b1028 commit 68745a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pkg/generator/testdata/azuredeploy-simple.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
},
{
"name": "AZURE_STORAGE_CONNECTION_STRING",
"secureValue": "[concat('AccountName=', variables('cnab_azure_state_storage_account_name'), ';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('cnab_azure_state_storage_account_name')), '2019-04-01').keys[0].value]"
"secureValue": "[concat('AccountName=', variables('cnab_azure_state_storage_account_name'), ';AccountKey=', listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('cnab_azure_state_storage_account_name')), '2019-04-01').keys[0].value)]"
},
{
"name": "CNAB_PARAM_age",
Expand Down
2 changes: 1 addition & 1 deletion pkg/generator/testdata/azuredeploy.json
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@
},
{
"name": "AZURE_STORAGE_CONNECTION_STRING",
"secureValue": "[concat('AccountName=', variables('cnab_azure_state_storage_account_name'), ';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('cnab_azure_state_storage_account_name')), '2019-04-01').keys[0].value]"
"secureValue": "[concat('AccountName=', variables('cnab_azure_state_storage_account_name'), ';AccountKey=', listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('cnab_azure_state_storage_account_name')), '2019-04-01').keys[0].value)]"
},
{
"name": "CNAB_PARAM_age",
Expand Down
2 changes: 1 addition & 1 deletion pkg/template/cnab-arm-driver-template.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func NewCnabArmDriverTemplate(bundleName string, bundleTag string, containerImag
},
{
Name: "AZURE_STORAGE_CONNECTION_STRING",
SecureValue: "[concat('AccountName=', variables('cnab_azure_state_storage_account_name'), ';AccountKey=',listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('cnab_azure_state_storage_account_name')), '2019-04-01').keys[0].value]",
SecureValue: "[concat('AccountName=', variables('cnab_azure_state_storage_account_name'), ';AccountKey=', listKeys(resourceId('Microsoft.Storage/storageAccounts', variables('cnab_azure_state_storage_account_name')), '2019-04-01').keys[0].value)]",
},
},
},
Expand Down

0 comments on commit 68745a1

Please sign in to comment.