A simple CLI tool to assign AppRole to all members of a given Group in Microsoft Entra ID
Project description
app-role-assignment-cli
A simple CLI tool for the Unix shell to assign or remove an AppRole to all members of a given Group in Microsoft Entra ID.
To interact with Microsoft Entra ID, you'll need to create an AppRegistration with the following API Permissions:
- Application.Read.All
- AppRoleAssignment.ReadWrite.All
- Group.Read.All
- GroupMember.Read.All
- User.ReadWrite.All
Once the app is registered, you'll need to create a Client secret (created in the "Certificates & secrets" section
of the registered Application).
The app-role command exposes two interfaces for granting and deleting an AppRoleAssignment to the users. Additionally,
a third interface is exposed to execute the assign or remove flow based on configuration (YAML) files:
-
assign:Usage: app-role assign APP_ROLE_DISPLAY_NAME APPLICATION_DISPLAY_NAME GROUP_DISPLAY_NAME
-
remove:Usage: app-role remove APP_ROLE_DISPLAY_NAME APPLICATION_DISPLAY_NAME GROUP_DISPLAY_NAME
-
from-config:Usage: app-role from-config ARG_CONFIG
The argument-configuration file needs to look like:
command: 'assign' # (or 'remove')
appRoleDisplayName: 'Viewer'
applicationDisplayName: 'The Application Defining Viewer'
groupDisplayName: 'The Group Whose Members Will Get Viewer Assigned'
Installation
To install the latest version in your virtual environment, run:
pip install app-role-assignment-cli -U
Running The Commands
To authenticate the Microsoft Graph API requests the main interface MSGraphAPIWrapper class needs to be instantiated
with tenant_id,client_id, and client_secret_value. At the moment, the secret holding these values is fetched from
AWS Secrets Manager, and the SECRET_ID environment variable holds the secret name to fetch.
At the moment this defaults to app-role-assignment-cli/dap/<environment>/azure_credentials, where <environment> is
a placeholder for the lowercase version of the ENVIRONMENT environment variable.
The AWS Secrets Manager client is created via the boto3 library, which implicitly looks for AWS_ACCESS_KEY_ID
and AWS_SECRET_ACCESS_KEY environment variables. Locally, the configuration is held in the local.env file and, as
explained below, localstack is used to store and retrieve the secret.
Local Set Up
To run the commands locally, make sure localstack is up and running. This emulates the AWS cloud environment, and
it can therefore be used to store the necessary secret that'll be retrieved at run time.
This project is equipped with the necessary docker-compose.yml to run localstack. Before that, populate the
environment with the variables in local.env:
set -a && source local.env && set +a
Then start the container with:
docker compose -f docker-compose.yml up -d
To store the secret you can use the aws cli like:
aws secretsmanager create-secret --name "app-role-assignment-cli/dap/local/azure_credentials" \
--secret-string '{"client_secret_value":"<client_secret_value>","client_id":"<client_id>","tenant_id":"<tenant_id>"}' \
--endpoint-url=http://localhost:4566 --region eu-west-1
once you've created the secret in the App Registration page in Azure portal.
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 app_role_assignment_cli-0.2.0.tar.gz.
File metadata
- Download URL: app_role_assignment_cli-0.2.0.tar.gz
- Upload date:
- Size: 22.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d09b6cf0cda0296bbda34797008ff594dde8acf7e7a342ef8b37de608bda97ed
|
|
| MD5 |
b33e07f288b27ba5ad844c7c638534c3
|
|
| BLAKE2b-256 |
52b557836b54119bd47b397b87f7e972b7bca009a6b587067993bcc73b1b6fc7
|
File details
Details for the file app_role_assignment_cli-0.2.0-py3-none-any.whl.
File metadata
- Download URL: app_role_assignment_cli-0.2.0-py3-none-any.whl
- Upload date:
- Size: 26.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e40e05a38027da67a29fb6c2d6a4ec4c4240c72dfeda808dbdcb7e3abbb37116
|
|
| MD5 |
e826f5e46258aea7a627ad7bbdac6f1d
|
|
| BLAKE2b-256 |
74913deff58de7dbe7439b5d00270b70d8e1bc8dfb3689db06a81ec8557c199f
|