This is a simple Python script that allows you to bulk enable the 'Lock' (Provisioning > Instances > Actions > Lock) feature on instances in Morpheus. I created this to answer a question in this forum post.
How it works:
- Send an API call to get all instances - https://apidocs.morpheusdata.com/reference/listinstances
- Filter through the response, collect all the instance IDs and save them in an array
- Iterate through the values in the array and append them to the URL for the API call to lock an instance - https://apidocs.morpheusdata.com/reference/lockinstance
Tips/Advice:
- Update the maximum number of instances to return in the script
- It may be best to perform this request in batches of ~50 instances. I have only tested it on my appliance with 5 instances. I'm not sure what the impact would be of sending a request to update the lock status on 100s of instances (whether the app node can handle that is something that needs to be tested).
- Update the appliance URL and API token to point to your appliance
- Add some filtering logic - you can find a complete list of available filters in the API docs
Covered under the Morpheus Open Source Code Policy