mirror of
https://github.com/hashicorp/packer.git
synced 2026-05-28 04:35:38 -04:00
Removed static value from code
The parameter within the contains() should not be hard-coded, using $meta_name variable value.
This commit is contained in:
parent
6327ab6f3d
commit
361a175fc9
1 changed files with 1 additions and 1 deletions
|
|
@ -155,7 +155,7 @@ createApplication() {
|
|||
|
||||
if [ "$azure_client_id" != "" ]; then
|
||||
echo "==> application already exist, grab appId"
|
||||
azure_client_id=$(az ad app list | jq -r '.[] | select(.displayName | contains("spfarmpacker")) .appId')
|
||||
azure_client_id=$(az ad app list | jq -r '.[] | select(.displayName | contains("'$meta_name'")) .appId')
|
||||
else
|
||||
echo "==> application does not exist"
|
||||
azure_client_id=$(az ad app create --display-name $meta_name --identifier-uris http://$meta_name --homepage http://$meta_name --password $azure_client_secret | jq -r .appId)
|
||||
|
|
|
|||
Loading…
Reference in a new issue