1
0
mirror of synced 2026-05-22 22:53:35 +00:00
Files
amazon-bedrock-agentcore-sa…/04-infrastructure-as-code/cloudformation
Jared e5341f1bf9 chore: Update LLM to be Global CRIS Haiku 4.5 (#622)
* update model id to haiku 4.5

* update model references to Haiku 4.5

* second batch of haiku 4.5 update.

* bump LLM to Haiku 4.5

* add alias to contributors

* add min version to starter toolkit so container is valid syntax.

* fix issues identified in code review.
2025-11-21 22:55:39 -05:00
..
2025-10-28 14:28:34 -04:00

CloudFormation Samples

Deploy Amazon Bedrock AgentCore resources using CloudFormation templates.

Prerequisites

  • AWS CLI installed and configured
  • CloudFormation permissions to create stacks and resources
  • Access to Amazon Bedrock AgentCore (preview)

General Deployment Pattern

# Deploy
aws cloudformation create-stack \
  --stack-name <stack-name> \
  --template-body file://<template-file> \
  --capabilities CAPABILITY_IAM \
  --region <region>

# Monitor
aws cloudformation describe-stacks \
  --stack-name <stack-name> \
  --region <region>

# Cleanup
aws cloudformation delete-stack \
  --stack-name <stack-name> \
  --region <region>

Samples

Troubleshooting

Stack Creation Fails

aws cloudformation describe-stack-events \
  --stack-name <stack-name> \
  --region <region>

CodeBuild Failures

aws codebuild batch-get-builds \
  --ids <build-id> \
  --region <region>