forked from awslabs/amazon-bedrock-agentcore-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbackend.tf.example
More file actions
33 lines (29 loc) · 1.13 KB
/
backend.tf.example
File metadata and controls
33 lines (29 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# ============================================================================
# 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/multi-agent-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