Workspace ID Configuration
Learn how to find and configure your Atmos Pro workspace ID.
Workspace ID Configuration
The workspace ID is a unique identifier for your Atmos Pro workspace. It's required to authenticate your GitHub Actions workflows with the correct workspace in Atmos Pro. This ensures that your infrastructure changes are deployed to the right environment and that your workflows have the proper permissions to interact with your workspace.
Finding Your Workspace ID
To find your workspace ID:
- Log in to your Atmos Pro app at atmos-pro.com
- Click on the "Workspace Settings" (gear icon) in the bottom left corner
- Your workspace ID will be displayed under "Workspace Settings"
The workspace ID will look something like ws_xxxxxxxxxxxxxxxxxxxxxxxxxxxx
.
Configuring Your Workspace ID
Once you have your workspace ID, you'll need to add it to your GitHub repository as a variable. You can do this by following the GitHub documentation.
The variable should be named ATMOS_PRO_WORKSPACE_ID
and should be set to your workspace ID.
Using Your Workspace ID
Your workspace ID is used in your GitHub Actions workflows to authenticate with the Atmos Pro API. It's passed as an environment variable to the Atmos Pro GitHub Actions:
env:
ATMOS_PRO_WORKSPACE_ID: ${{ vars.ATMOS_PRO_WORKSPACE_ID }} # Your workspace ID from Atmos Pro
This environment variable is required for all Atmos Pro GitHub Actions workflows.