Installing-and-Configuring-HashiCorp-Vault
Installing-and-Configuring-HashiCorp-Vault copied to clipboard
m5/2-azure_vms cloud init fails on Azure CLI install
The following line results in an error during cloud-init
pip3 install --user 'azure-cli~=2.26.0' 'azure-mgmt-core~=1.2.0' 'cryptography~=3.3.2' 'urllib3[secure]~=1.26.5' 'requests~=2.25.1'
The error message suggests that upgrading pip is the means to resolution.
adding
python3 -m pip install --upgrade pip
just before the Azure CLI install in vault.tpl appears to provide a workaround.