Skip to content

Commit 94635aa

Browse files
authored
Update datasync.sh
Updated VM to Standard_E4as_v5
1 parent ce121e0 commit 94635aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bash/datasync.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ function create_azure_vm(){
150150

151151
function create_azure_vm_existing_vnet(){
152152
echo -e "\033[0;33mCreating Azure Virtual Machine for DataSync with an existing vnet\033[0;33m"
153-
az vm create -g "$resource_group" -l "$location" --name "$vm_name" --size Standard_E4as_v4 --os-type linux --attach-os-disk "$disk_name" --subnet "$(az network vnet subnet show --resource-group $vnet_rg --vnet-name $vnet_name --name $subnet_name -o tsv --query id)" --public-ip-address "" --only-show-errors || { echo "An error occured while creating the Azure VM"; exit 1; }
153+
az vm create -g "$resource_group" -l "$location" --name "$vm_name" --size Standard_E4as_v5 --os-type linux --attach-os-disk "$disk_name" --subnet "$(az network vnet subnet show --resource-group $vnet_rg --vnet-name $vnet_name --name $subnet_name -o tsv --query id)" --public-ip-address "" --only-show-errors || { echo "An error occured while creating the Azure VM"; exit 1; }
154154
}
155155

156156
function cleanup(){

0 commit comments

Comments
 (0)