Environment Management¶
Work in Progress
This page is currently under development.
Overview¶
Environment management is a core feature of AgentCore CLI that allows you to create, manage, and switch between isolated environments such as development, staging, and production.
Environment Concepts¶
- Environment: A logical grouping of AWS resources and configurations
- Environment Isolation: Complete separation of resources between environments
- Regional Deployment: Each environment can be deployed to a different AWS region
- Environment Variables: Environment-specific configuration values
- Default Agent: Each environment can have a default agent runtime
Creating Environments¶
Create new environments using the env create
command:
Bash | |
---|---|
Switching Between Environments¶
Switch the active environment with the env use
command:
Bash | |
---|---|
Environment Variables¶
Manage environment-specific variables:
Bash | |
---|---|
Environment-Specific Resources¶
When creating resources, you can specify the target environment:
Bash | |
---|---|
Environment Deletion¶
Delete environments that are no longer needed:
Bash | |
---|---|
Best Practices¶
Guidelines for working with environments will be added in a future update.
Detailed Documentation¶
Complete documentation will be added in a future update.