Script to migrate users and groups from one instance/organization to another.
Groups will be created with the applications onboarded to group option, and the role from the source instance. If there are several roles used within one group, the least priviliged one will be selected (View < Edit < Rules Admin < Admin).
Application entries will not be added to any newly created groups in the destination. Agents should use the application.group
configuration to ensure applications are added to the groups when reporting into the new instance.
- Python 3.10 (other versions may work but are untested)
- Ability to install Python libraries from
requirements.txt
You can run this script locally with a Python install, or, in a container with the provided Dockerfile
docker run -it -v $PWD/config.json:/usr/src/app/config.json ghcr.io/contrast-security-oss/migrate-users-and-groups:main <...args...>
docker build . --tag contrast-migrate-users-groups # Build the container
docker run -it -v $PWD/config.json:/usr/src/app/config.json contrast-migrate-users-groups <...args...> # Run the container
Use of a virtual environment is encouraged
python3 -m venv venv # Create the virtual environment
. venv/bin/activate # Activate the virtual environment
pip3 install -r requirements.txt # Install dependencies
python3 contrast_migrate_users_groups.py <args> # Run script
Connection details for your source
and destination
environments should be specified in the format described in config.json.tmpl
.
The logging level defaults to WARN
, it may be raised to INFO
by adding the command line argument -v
or to DEBUG
with -vv
.
There are also the following optional environment variables:
INSECURE_SKIP_CERT_VALIDATION
- set totrue
or1
to skip TLS certificate validation on network requestsHTTP_PROXY
- set to your proxy URL if a proxy is needed to reach Contrast
You must confirm creation of users and groups. Output should be as follows:
testing connection with instance 'source'
testing connection with instance 'destination'
INFO: Listing users
Users already in source and dest
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Username ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ [email protected] │
│ [email protected] │
└─────────────────────────────────────────┘
Users to create
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
┃ Username ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
│ [email protected] │
│ [email protected] │
└─────────────────────────────────────────┘
[?] Okay to create user(s)? (y/N): y
Creating user '[email protected]'
Creating user '[email protected]'
Creating users... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100% 0:00:00
INFO: Listing groups and their users
Groups already in
source and dest
┏━━━━━━━━━━━━━━━━━━━━━┓
┃ Group ┃
┡━━━━━━━━━━━━━━━━━━━━━┩
│ ExampleAdminGroup │
│ JenkinsMultipleOrgs │
└─────────────────────┘
Groups to create
┏━━━━━━━━━━━━━━━━━━━━━┓
┃ Group ┃
┡━━━━━━━━━━━━━━━━━━━━━┩
│ ExampleEditGroup │
└─────────────────────┘
[?] Okay to create group(s)? (y/N): y
Creating group 'ExampleEditGroup' with role 'rules_admin' and member(s):
Creating groups... ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 100% 0:00:00
Various tools enforce code standards, and are run as a pre-commit hook. This must be setup before committing changes with the following commands:
python3 -m venv venv # setup a virtual environment
. venv/bin/activate # activate the virtual environment
pip3 install -r requirements-dev.txt # install development dependencies (will also include app dependencies)
pre-commit install # setup the pre-commit hook which handles formatting