agentcore_cli.commands.environment
agentcore_cli.commands.environment
¶
Environment management commands for AgentCore Platform CLI.
This module provides commands for managing environments (dev, staging, prod) in our environment-first architecture.
create_environment(name, region='us-west-2', description=None, set_current=False)
¶
Create a new environment.
Creates a new isolated environment for deploying agents. Each environment maintains its own agent runtimes, endpoints, and configuration.
Examples:
agentcore-cli env create dev --region us-east-1 --set-current agentcore-cli env create staging --region us-west-2 agentcore-cli env create prod --region eu-west-1 --description "Production environment"
Source code in agentcore_cli/commands/environment.py
Python | |
---|---|
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
|
delete_environment(name, force=False, keep_resources=False)
¶
Delete an environment.
⚠️ WARNING: This will delete the environment and optionally its AWS resources. All agent runtimes and endpoints in this environment will be removed.
Examples:
agentcore-cli env delete old-env --force agentcore-cli env delete dev --keep-resources # Remove from config only
Source code in agentcore_cli/commands/environment.py
Python | |
---|---|
275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 |
|
env_group()
¶
Environment management commands.
Manage development, staging, and production environments. Each environment maintains isolated agent runtimes, endpoints, and configurations.
Source code in agentcore_cli/commands/environment.py
list_environments(verbose)
¶
List all environments.
Shows all configured environments with their basic information. Use --verbose to see detailed configuration for each environment.
Source code in agentcore_cli/commands/environment.py
manage_variables(set_var=None, unset=None, list_vars=False, environment=None)
¶
Manage environment variables.
Environment variables are available to all agent runtimes in the environment.
Examples:
agentcore-cli env vars --list agentcore-cli env vars --set API_KEY=secret123 agentcore-cli env vars --unset OLD_CONFIG agentcore-cli env vars --set DEBUG=true --env staging
Source code in agentcore_cli/commands/environment.py
show_current()
¶
Show current environment details.
Source code in agentcore_cli/commands/environment.py
use_environment(name)
¶
Switch to a different environment.
Changes the current active environment for all subsequent commands. All agent operations will target the selected environment.
Examples:
agentcore-cli env use dev agentcore-cli env use staging agentcore-cli env use prod