bc-export.py
Requires BC_API_KEY
ccs-import.py
Requires PRISMA_API_URL, PRISMA_ACCESS_KEY_ID, PRISMA_SECRET_KEY
git clone https://github.com/jneytchev-at-panw/bc-ccs-migration
cd bc-ccs-migration
mkdir data
python3 -m venv venv
source venv/bin/activate
pip install -r requirements.txt
export BC_API_KEY=<your value>
python3 bc-export.py
tar zcvf data.tar.gz data/
deactivate
cd bc-ccs-migration
git pull
# make sure the data directory exists
# activate venv if it is not already active
export BC_API_KEY=<your value>
python3 bc-export.py
tar zcvf data.tar.gz data/
deactivate