localstack-management
Control LocalStack lifecycle operations: start, stop, restart, or check status of your local AWS development environment.
Instructions
Manage LocalStack lifecycle: start, stop, restart, or check status
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | The LocalStack management action to perform | |
envVars | No | Additional environment variables as key-value pairs (only for start action) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"action": {
"description": "The LocalStack management action to perform",
"enum": [
"start",
"stop",
"restart",
"status"
],
"type": "string"
},
"envVars": {
"additionalProperties": {
"type": "string"
},
"description": "Additional environment variables as key-value pairs (only for start action)",
"type": "object"
}
},
"required": [
"action"
],
"type": "object"
}