Neverinstall Documentation
Create your SpaceBlog
  • πŸ‘‹Introduction
    • πŸ’‘How Neverinstall Works
    • βš™οΈSystem Requirements
    • 🎭Join Our Community
  • πŸ’»Spaces
    • πŸš€Launching a space
    • ⏳Building a space
    • ⏸️Pausing a space
    • ⏯️Resuming a space
    • ❌Deleting a space
    • 🎹Change language & keyboard layout
    • πŸ–±οΈKeyboard Shortcuts
    • πŸ“ΉResolutions & Quality
    • πŸ—ƒοΈFile Sync, Download & Upload
    • 🎲Installing New Applications
    • πŸ’ΎSaving Sessions
    • ⏰Session Duration
    • 🌈Sharing & Collaboration
    • πŸ–ŒοΈChange apperance
    • πŸ””Notifications
  • 🌎Server Locations
  • 🦩Data Migration
  • βš’οΈIncidents
    • Service Outage - 24th May 2023
  • CloudLink
    • πŸŽ‰Introducing CloudLink
    • 🌀️Creating a CloudLink space
      • Azure
      • AWS
      • GCP
    • πŸ”‘How we store your cloud credentials
  • Privacy & Data Security
    • πŸ”Privacy Policy
    • πŸ›‘οΈSecurity
    • πŸ“ƒTerms of Service
Powered by GitBook
On this page

Was this helpful?

  1. CloudLink
  2. Creating a CloudLink space

Azure

Finding the required cloud credentials for Azure

PreviousCreating a CloudLink spaceNextAWS

Last updated 10 months ago

Was this helpful?

For Azure as Your Cloud Service Provider

If you've selected Azure as your cloud service provider, you'll require the following credentials: Azure Subscription ID, Azure Tenant ID, Azure Client ID, and Azure Client Secret.

To obtain these credentials, follow the steps below:

Step 1: Create an Azure Account

If you don't already have an Azure account, create one by following the instructions provided on the Azure website.

Step 2: Install Azure CLI

If you already have an Azure account, proceed to install Azure CLI on your local system. You can look into for further information.

Step 3: Authenticate Azure CLI

Run Azure CLI in your terminal and authenticate the CLI by using the command

az login

Step 4: Copy Azure Subscription ID

Navigate to your Azure dashboard and copy the subscription ID.

A user can navigate to the subscriptions tab as highlighted and access their subscription ID.

Step 5: Set Subscription ID

Run the following command in your terminal, replacing "SUBSCRIPTION_ID" with your actual subscription ID:

az account set --subscription="SUBSCRIPTION_ID"

Step 6: Create New Service Principal

Create a new service principal with 'Contributor' role using the following command, again replacing "SUBSCRIPTION_ID" with your actual subscription ID:

az ad sp create-for-rbac --role="Contributor" \
--scopes="/subscriptions/SUBSCRIPTION_ID"

Step 7: Collect Your Credentials

The command executed in step 6 will return several values including appId, displayName, password, and tenant.

In this context, appId is your Azure "Client ID", tenant is your Azure "Tenant ID", and password is your Azure "Client Secret".

Please be sure to save these values safely as they will be needed to create an instance in Neverinstall.

🌀️
steps to install azure CLI
Azure dashboard.