Python tool for generating AWS SSO configuration and directory structure
Project description
SSO Config Generator
A Python CLI tool for generating AWS CLI configuration and directory structures.
The issue it solves
In a large organization with multiple AWS accounts, managing access via AWS SSO can become cumbersome. You may have access to many roles across various accounts, and switching between them manually can be error-prone and time-consuming.
sso-config-generator creates a profile for each AWS Role you have access to via AWS SSO. After logging in to an sso session, you can use the profiles in your AWS CLI commands, SDKs, and tools like Terraform.
aws sso login --profile sso-browser
The login command opens a browser window for authentication. After successful login, you can use the generated profiles like this:
aws s3 ls --profile my-profile-name
or set the AWS_PROFILE (or AWS_DEFAULT_PROFILE) environment variable:
export AWS_PROFILE=my-profile-name
aws s3 ls
Optionally it also creates a directory structure that mirrors your AWS Organization, making it easy to navigate and manage multiple AWS accounts. When a developer role is configured, each account directory receives a .envrc file (for use with direnv) that sets the AWS_PROFILE environment variable for that account, so that cd-ing into the directory automatically switches to the correct AWS profile.
Profile Naming Convention
Profiles are named using the following convention:
<RoleName>@<AccountName>
For example, if you have access to the AdministratorAccess role in the DevAccount, the profile will be named:
AdministratorAccess@DevAccount
Authentication Profile
sso-config-generator authenticates through a named AWS profile (default: sso-browser, overridable with --profile). That profile must exist in ~/.aws/config and reference a valid sso_session:
[sso-session sso]
sso_region = eu-west-1
sso_start_url = https://my-company.awsapps.com/start
sso_registration_scopes = sso:account:access
[profile sso-browser]
sso_session = sso
sso_account_id = 123456789012 # Organization Management Account ID
sso_role_name = OrganizationAccountRole
region = eu-west-1
output = json
Run aws sso login --profile sso-browser before invoking sso-config-generator so the CLI can reuse the cached credentials.
One-Time Setup: Authentication Profile Configuration
The authentication profile is used to retrieve both SSO account information and (when --use-ou-structure is active) AWS Organization structure. The SSO role must have the necessary IAM permissions.
Role Setup:
- In your AWS SSO console, assign a role to your user account in your Organization Management Account (master account)
- The role name in SSO should match the
sso_role_nameyou configured in thesso-browserprofile (e.g.,OrganizationAccountRole) - In your Organization Management Account, create or update the IAM role with the following trust relationship (for SSO):
- Trust the SSO service in your region
- Attach the following permissions policy to the IAM role:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"sso:ListAccounts",
"sso:ListAccountRoles",
"organizations:ListRoots",
"organizations:ListOrganizationalUnitsForParent",
"organizations:DescribeOrganizationalUnit",
"organizations:ListParents"
],
"Resource": "*"
}
]
}
Alternative: Instead of creating a custom role, you can use the AWS managed policy OrganizationsReadOnlyAccess which includes all the required permissions.
After setting up the role in SSO, run:
aws sso login --profile sso-browser
Overview
SSO Config Generator is a standalone Python tool that simplifies AWS SSO configuration management by:
- Generating properly configured AWS CLI config files
- Creating directory structures that mirror your AWS Organization
- Setting up environment files for easy role switching using
direnv
Installation
You can install sso-config-generator via pip, or use it directly without installation using uvx.
pip install sso-config-generator
Prerequisites
- Python 3.8 or higher
- AWS CLI v2 configured with:
- Default region set in
~/.aws/configor viaAWS_DEFAULT_REGIONenvironment variable - AWS SSO configured via
aws configure sso
- Default region set in
direnv(optional, for automatic profile switching)
AWS Configuration
Before using the tool, ensure you have:
- Configure AWS SSO:
Either run:
aws configure sso # Follow the prompts to enter: # - SSO start URL (e.g., https://your-domain.awsapps.com/start) # - SSO Region # - SSO registration scopes (accept default)
or manually edit~/.aws/configto look like this (the[profile sso-browser]block must match the one described in the Required SSO Browser Profile section):[sso-session sso] sso_region = eu-west-1 sso_start_url = https://YOUR_DOMAIN.awsapps.com/start sso_registration_scopes = sso:account:access [profile sso-browser] sso_session = sso sso_account_id = 123456789012 sso_role_name = OrganizationAccountRole output = json region = eu-west-1 - Login to AWS SSO:
# Login to SSO to create credentials aws sso login --profile sso-browser
Cloud9/CloudX Integration
When running in AWS Cloud9 or CloudX environments, the tool will automatically:
- Detect if you're in your home directory with an "environment" subdirectory
- Change to the "environment" directory
- Skip the SSO name in the directory structure
This ensures seamless operation in AWS-provided development environments.
Troubleshooting
-
"Error: You must specify a region"
- Use the
--regionflag:uvx sso-config-generator --region us-east-1 - Or set AWS_DEFAULT_REGION environment variable
- Or configure default region in ~/.aws/config
- Use the
-
"Unable to locate credentials"
- Run
aws sso loginto refresh your SSO credentials - Ensure you've completed AWS SSO configuration with
aws configure sso - Check if your SSO session has expired (sessions typically last 8 hours)
- Run
-
"SSO session is expired"
- Run
aws sso loginto start a new session
- Run
Usage
Basic Usage
Simply run:
uvx sso-config-generator
This will update ~/.aws/config with one profile per account/role combination and nothing else. Directory creation and .envrc generation are opt-in (see options below).
The tool caches OU structure and account information in the same directory as the real config file (symlinks are resolved, so the cache lands in the environment-specific directory rather than ~/.aws/). This works seamlessly with aws-envs, where ~/.aws/config is a symlink such as ~/.aws/aws-envs/easytocloud/config — the cache is then stored as ~/.aws/aws-envs/easytocloud/.ou-cache.
The cache filename is:
.ou-cache— default (one config file = one environment, no qualifier needed).ou-cache.<sso-session-name>— when--sso-session-nameis explicitly supplied (multiple SSO sessions sharing one config file)
If a cache file is older than 7 days it is ignored and rebuilt automatically. To force a full cache rebuild:
uvx sso-config-generator --rebuild-cache
Command Options
| Option | Default | Description |
|---|---|---|
--profile NAME |
sso-browser |
AWS profile used to authenticate against SSO and AWS Organizations |
--region REGION |
eu-west-1 |
AWS region |
--sso-session-name NAME |
auto-detected | Name of the [sso-session …] section in ~/.aws/config |
--sso-name NAME |
extracted from URL | Override the SSO organisation name |
--create-directories |
off | Create a local directory tree with one directory per account |
--use-ou-structure |
off | Nest account directories under their OU hierarchy (requires --create-directories) |
--developer-role-name NAME |
not set | Create a .envrc in each account directory exporting AWS_PROFILE to this role (requires --create-directories; omit to skip .envrc creation) |
--unified-root PATH |
current directory | Root directory for the account tree |
--skip-sso-name |
off | Do not create a top-level directory for the SSO organisation name |
--create-repos-md |
off | Create a repos.md placeholder in each account directory |
--rebuild-cache |
off | Force a full refresh of the OU / account cache |
--validate |
off | Validate existing configuration instead of generating |
--version |
Show the version and exit | |
--help |
Show help and exit |
Configuration File
Frequently used options can be stored in .sso-config-generator.ini so you do not have to repeat them on every invocation. The tool reads (in order, later values override earlier ones):
~/.sso-config-generator.ini./.sso-config-generator.ini(current working directory)
Command-line flags always take precedence over both files.
A fully annotated sample file with all options set to their defaults (and DeveloperAccess as the example developer role) is provided as .sso-config-generator.ini.sample. Copy and adjust it:
# User-wide defaults
cp .sso-config-generator.ini.sample ~/.sso-config-generator.ini
# Or project-specific overrides
cp .sso-config-generator.ini.sample .sso-config-generator.ini
Minimal example that enables directory creation with OU nesting and .envrc files:
[sso-config-generator]
create_directories = true
use_ou_structure = true
developer_role_name = DeveloperAccess
Examples
- Update
~/.aws/configonly (default behaviour):
uvx sso-config-generator
- Create a local directory tree:
uvx sso-config-generator --create-directories
- Directory tree with OU-based nesting:
uvx sso-config-generator --create-directories --use-ou-structure
- Directory tree with
.envrcfiles for a specific role:
uvx sso-config-generator --create-directories --developer-role-name DeveloperAccess
- Use a different authentication profile:
uvx sso-config-generator --profile my-admin-profile
- Use a specific AWS region:
uvx sso-config-generator --region us-east-1
- Force a cache rebuild:
uvx sso-config-generator --rebuild-cache
- Specify a custom root directory:
uvx sso-config-generator --create-directories --unified-root ~/aws-environments
- Working in an
environmentdirectory (Cloud9 / CloudX):
cd ~/environment
uvx sso-config-generator
# SSO name directory is automatically skipped in an 'environment' directory
- Validate existing configuration:
uvx sso-config-generator --validate
Development
Setup Development Environment
- Clone the repository:
git clone https://github.com/easytocloud/sso-config-generator.git
cd sso-config-generator
- Create a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
- Install the package in development mode:
pip install -e .
Common Development Tasks
- Build the package:
pip install build && python -m build - Run the tool:
uvx sso-config-generator - Test changes:
./test_sso_config.sh
Versioning
This project uses semantic-release for automated versioning and package publishing. The version is stored in a single source of truth:
src/sso_config_generator/version.py: Contains the__version__variable__init__.pyimports this versionpyproject.tomlis updated automatically by the GitHub workflow
When a commit is pushed to the main branch, the GitHub workflow:
- Determines the next version based on commit messages
- Creates a GitHub release and tag
- Updates the version in version.py and pyproject.toml
- Publishes the package to PyPI
To trigger specific version increments, use the following commit message prefixes:
feat:- Minor version increment (e.g., 1.1.0 -> 1.2.0)fix:,docs:,style:, etc. - Patch version increment (e.g., 1.1.0 -> 1.1.1)
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file sso_config_generator-1.8.2.tar.gz.
File metadata
- Download URL: sso_config_generator-1.8.2.tar.gz
- Upload date:
- Size: 23.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f759fa7ec78e854aacdcd5d9995231541e1ee083873232528feab212380d5dc0
|
|
| MD5 |
71c61183614e5dd9b2564272428317af
|
|
| BLAKE2b-256 |
f4da5087af62c360579f45be1ed86c3065a8a4a82a2a12da6353dfa052a2c8ee
|
File details
Details for the file sso_config_generator-1.8.2-py3-none-any.whl.
File metadata
- Download URL: sso_config_generator-1.8.2-py3-none-any.whl
- Upload date:
- Size: 20.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb98f9714cb0d6c0198b4c7b6b16227271fb1a2f2f5271b54da1a3a5adb88a14
|
|
| MD5 |
5160ff240b15a0b4a51ae0d448f20df3
|
|
| BLAKE2b-256 |
524fd4c7eb18bdfac017e06c66ce3cbe259afe7031dbf03f0986be2259d1abf8
|