mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
Do not quote azure image upload params (#549)
This commit is contained in:
parent
14f0432624
commit
74a7a80153
@ -151,6 +151,7 @@ delete_image() {
|
||||
az image delete -n "${AZURE_DISK_NAME}" -g "${AZURE_RESOURCE_GROUP_NAME}"
|
||||
}
|
||||
|
||||
# shellcheck disable=SC2086
|
||||
create_sig_version() {
|
||||
if [[ -n ${AZURE_VMGS_PATH} ]]; then
|
||||
local DISK
|
||||
@ -180,11 +181,11 @@ create_sig_version() {
|
||||
--gallery-name "${AZURE_GALLERY_NAME}" \
|
||||
--gallery-image-definition "${AZURE_IMAGE_DEFINITION}" \
|
||||
--gallery-image-version "${AZURE_IMAGE_VERSION}" \
|
||||
--target-regions "${AZURE_REPLICATION_REGIONS}" \
|
||||
"${AZURE_CVM_ENCRYPTION_ARGS}" \
|
||||
--target-regions ${AZURE_REPLICATION_REGIONS} \
|
||||
${AZURE_CVM_ENCRYPTION_ARGS} \
|
||||
--replica-count 1 \
|
||||
--replication-mode Full \
|
||||
"${SOURCE}"
|
||||
${SOURCE}
|
||||
}
|
||||
|
||||
create_disk
|
||||
|
Loading…
Reference in New Issue
Block a user