1
0
mirror of synced 2026-08-06 03:27:11 +00:00
Files
Tesfagabir Meharizghi 83b72e1dda Add Terraform Infrastructure-as-Code (IaC) patterns for AgentCore deployment (#654)
* feat: Add Terraform basic-runtime pattern

* Modified the Terraform basic-runtime with test script, README, default region

* feat: Add Terraform mcp-server-runtime pattern

* feat: Add Terraform multi-agent-runtime pattern

* feat: Add Terraform end-to-end-weather-agent runtime pattern

* Added Terraform main README

* Fixed basic runtime test script

* docs: add Terraform support to IaC README

* Replaced resources to intuitive names, removed hardcoded values, cleaned README

* Enhanced Terraform READMEs

* Removed unused imports

---------

Co-authored-by: Tesfagabir Meharizghi <mehariz@amazon.com>
2025-11-24 08:38:56 -05:00

34 lines
1.1 KiB
Plaintext

# ============================================================================
# Terraform Backend Configuration - Remote State Storage
# ============================================================================
# This is an example backend configuration for storing Terraform state remotely
# Copy this file to backend.tf and customize with your backend settings
# Example: cp backend.tf.example backend.tf
# IMPORTANT: Uncomment and configure ONE of the backend options below
# Option 1: S3 Backend (Recommended for AWS)
# terraform {
# backend "s3" {
# bucket = "your-terraform-state-bucket"
# key = "agentcore/basic-runtime/terraform.tfstate"
# region = "us-west-2"
# encrypt = true
# dynamodb_table = "terraform-state-lock"
# }
# }
# Option 2: Terraform Cloud
# terraform {
# cloud {
# organization = "your-organization"
# workspaces {
# name = "agentcore-basic-runtime"
# }
# }
# }
# Option 3: Local Backend (Default - No configuration needed)
# State will be stored locally in terraform.tfstate
# Not recommended for team environments or production use