You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
algo/docs/cloud-azure.md

2.9 KiB

Azure cloud setup

The easiest way to get started with the Azure CLI is by running it in an Azure Cloud Shell environment through your browser.

Here you can find some information from the official doc. We put the essential commands together for simplest usage.

Install azure-cli

  • macOS (link):

    $ brew update && brew install azure-cli
    
  • Linux (deb-based) (link):

    $ sudo apt-get update && sudo apt-get install \
        apt-transport-https \
        lsb-release \
        software-properties-common \
        dirmngr -y
    $ AZ_REPO=$(lsb_release -cs)
    $ echo "deb [arch=amd64] https://packages.microsoft.com/repos/azure-cli/ $AZ_REPO main" | \
        sudo tee /etc/apt/sources.list.d/azure-cli.list
    $ sudo apt-key --keyring /etc/apt/trusted.gpg.d/Microsoft.gpg adv \
        --keyserver packages.microsoft.com \
        --recv-keys BC528686B50D79E339D3721CEB3E94ADBE1229CF
    $ sudo apt-get update
    $ sudo apt-get install azure-cli
    
  • Linux (rpm-based) (link):

    $ sudo rpm --import https://packages.microsoft.com/keys/microsoft.asc
    $ sudo sh -c 'echo -e "[azure-cli]\nname=Azure CLI\nbaseurl=https://packages.microsoft.com/yumrepos/azure-cli\nenabled=1\ngpgcheck=1\ngpgkey=https://packages.microsoft.com/keys/microsoft.asc" > /etc/yum.repos.d/azure-cli.repo'
    $ sudo yum install azure-cli
    
  • Windows (link):
    For Windows the Azure CLI is installed via an MSI, which gives you access to the CLI through the Windows Command Prompt (CMD) or PowerShell. When installing for Windows Subsystem for Linux (WSL), packages are available for your Linux distribution. Download the MSI installer

If your OS is missing or to get more information see the official doc

Sign in

  1. Run the login command:
az login

If the CLI can open your default browser, it will do so and load a sign-in page.

Otherwise, you need to open a browser page and follow the instructions on the command line to enter an authorization code after navigating to https://aka.ms/devicelogin in your browser.

  1. Sign in with your account credentials in the browser.

There are ways to sign in non-interactively, which are covered in detail in Sign in with Azure CLI.

Now you are able to deploy an AlgoVPN instance without hassle