- Create VPC with public subnets for outbound internet access - Create ECR repository for container images - Create IAM roles (Task Role with DynamoDB/S3 access, Execution Role) - Create ECS Task Definition (Fargate, 2048 MB memory, 256 CPU) - Create ECS Service (1 desired count) - Create CloudWatch Log Group - Add Security Group (outbound only for Discord bot) - Update Dockerfile with .buildstamp to prevent runtime rebuild - Add .env.example with Discord webhook and channel configurations - Update .gitignore to exclude Terraform state files Co-Authored-By: Claude <noreply@anthropic.com>
100 lines
2.4 KiB
HCL
100 lines
2.4 KiB
HCL
/**
|
|
* Deployment Outputs
|
|
*/
|
|
|
|
output "sessions_table_name" {
|
|
description = "DynamoDB table name for session storage"
|
|
value = aws_dynamodb_table.sessions.name
|
|
}
|
|
|
|
output "artifacts_table_name" {
|
|
description = "DynamoDB table name for artifacts metadata"
|
|
value = aws_dynamodb_table.artifacts.name
|
|
}
|
|
|
|
output "artifacts_bucket_name" {
|
|
description = "S3 bucket name for artifact storage"
|
|
value = aws_s3_bucket.artifacts.id
|
|
}
|
|
|
|
output "artifacts_bucket_arn" {
|
|
description = "S3 bucket ARN"
|
|
value = aws_s3_bucket.artifacts.arn
|
|
}
|
|
|
|
output "sessions_table_arn" {
|
|
description = "DynamoDB sessions table ARN"
|
|
value = aws_dynamodb_table.sessions.arn
|
|
}
|
|
|
|
output "artifacts_table_arn" {
|
|
description = "DynamoDB artifacts table ARN"
|
|
value = aws_dynamodb_table.artifacts.arn
|
|
}
|
|
|
|
output "environment_variables" {
|
|
description = "Required environment variables for clawdbot"
|
|
value = {
|
|
SESSIONS_TABLE_NAME = aws_dynamodb_table.sessions.name
|
|
ARTIFACTS_TABLE_NAME = aws_dynamodb_table.artifacts.name
|
|
ARTIFACTS_S3_BUCKET = aws_s3_bucket.artifacts.id
|
|
AWS_REGION = var.aws_region
|
|
}
|
|
}
|
|
|
|
# ECS Outputs
|
|
output "ecs_cluster_name" {
|
|
description = "ECS cluster name"
|
|
value = aws_ecs_cluster.clawdbot.name
|
|
}
|
|
|
|
output "ecs_service_name" {
|
|
description = "ECS service name"
|
|
value = aws_ecs_service.clawdbot.name
|
|
}
|
|
|
|
output "ecs_task_definition_family" {
|
|
description = "ECS task definition family"
|
|
value = aws_ecs_task_definition.clawdbot.family
|
|
}
|
|
|
|
output "ecr_repository_url" {
|
|
description = "ECR repository URL for container images"
|
|
value = aws_ecr_repository.clawdbot.repository_url
|
|
}
|
|
|
|
output "ecr_repository_name" {
|
|
description = "ECR repository name"
|
|
value = aws_ecr_repository.clawdbot.name
|
|
}
|
|
|
|
output "cloudwatch_log_group_name" {
|
|
description = "CloudWatch Log Group name"
|
|
value = aws_cloudwatch_log_group.clawdbot.name
|
|
}
|
|
|
|
output "vpc_id" {
|
|
description = "VPC ID"
|
|
value = aws_vpc.clawdbot.id
|
|
}
|
|
|
|
output "public_subnet_ids" {
|
|
description = "Public subnet IDs"
|
|
value = aws_subnet.public[*].id
|
|
}
|
|
|
|
output "security_group_id" {
|
|
description = "Security Group ID"
|
|
value = aws_security_group.clawdbot.id
|
|
}
|
|
|
|
output "ecs_task_role_arn" {
|
|
description = "ECS Task Role ARN"
|
|
value = aws_iam_role.ecs_task_role.arn
|
|
}
|
|
|
|
output "ecs_execution_role_arn" {
|
|
description = "ECS Execution Role ARN"
|
|
value = aws_iam_role.ecs_execution_role.arn
|
|
}
|