├── .gitignore ├── 1280 - Jamf API CLI Tool - One Solution for Secure Jamf API Access in Policies and Scripts.pdf ├── LICENSE ├── README.md ├── backend ├── multi-stage │ ├── apitokentool-stage1 │ │ ├── apitokentool-stage1-bundle.zip │ │ └── lambda_function.py │ └── apitokentool-stage2 │ │ ├── apitokentool-stage2-bundle.zip │ │ └── lambda_function.py └── single-stage │ └── apitokentool │ ├── apitokentool-singlestage-bundle.zip │ └── lambda_function.py └── client └── apitokentool-bash └── apitokentool.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowardGMac/apitokentool/HEAD/.gitignore -------------------------------------------------------------------------------- /1280 - Jamf API CLI Tool - One Solution for Secure Jamf API Access in Policies and Scripts.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowardGMac/apitokentool/HEAD/1280 - Jamf API CLI Tool - One Solution for Secure Jamf API Access in Policies and Scripts.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowardGMac/apitokentool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # apitokentool -------------------------------------------------------------------------------- /backend/multi-stage/apitokentool-stage1/apitokentool-stage1-bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowardGMac/apitokentool/HEAD/backend/multi-stage/apitokentool-stage1/apitokentool-stage1-bundle.zip -------------------------------------------------------------------------------- /backend/multi-stage/apitokentool-stage1/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowardGMac/apitokentool/HEAD/backend/multi-stage/apitokentool-stage1/lambda_function.py -------------------------------------------------------------------------------- /backend/multi-stage/apitokentool-stage2/apitokentool-stage2-bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowardGMac/apitokentool/HEAD/backend/multi-stage/apitokentool-stage2/apitokentool-stage2-bundle.zip -------------------------------------------------------------------------------- /backend/multi-stage/apitokentool-stage2/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowardGMac/apitokentool/HEAD/backend/multi-stage/apitokentool-stage2/lambda_function.py -------------------------------------------------------------------------------- /backend/single-stage/apitokentool/apitokentool-singlestage-bundle.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowardGMac/apitokentool/HEAD/backend/single-stage/apitokentool/apitokentool-singlestage-bundle.zip -------------------------------------------------------------------------------- /backend/single-stage/apitokentool/lambda_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowardGMac/apitokentool/HEAD/backend/single-stage/apitokentool/lambda_function.py -------------------------------------------------------------------------------- /client/apitokentool-bash/apitokentool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HowardGMac/apitokentool/HEAD/client/apitokentool-bash/apitokentool.sh --------------------------------------------------------------------------------