0e6ecae26d
Rename all acdl-* AWS resources → nova-* across terraform (DynamoDB, Secrets Manager, Lambda, SNS, SG, KMS alias, ECS, ECR, IAM user/policy, state bucket, ALB, VPC/subnet names). Lambda default table names → nova-* (D-111). State bucket backend → nova-tfstate (-migrate-state documented). New docs/NOVA_AWS_MIGRATION.md runbook (staged migration + rollback). New scripts/migrate_dynamodb_data.py (scan+copy, dry-run default). acdl-deploy- → nova-deploy- role ARN in deploy workflows. Test fixtures updated; terraform validate + pytest + run_ci.sh PASS. ---ci--- project: acdl phase: 4 milestone: v1.15 status: execute ---/ci---
14 lines
425 B
Terraform
14 lines
425 B
Terraform
output "bucket_arn" {
|
|
value = aws_s3_bucket.this.arn
|
|
description = "The S3 bucket ARN."
|
|
}
|
|
|
|
output "bucket_name" {
|
|
value = aws_s3_bucket.this.id
|
|
description = "The bucket name (echoes the input)."
|
|
}
|
|
|
|
output "bucket_regional_domain_name" {
|
|
value = aws_s3_bucket.this.bucket_regional_domain_name
|
|
description = "The bucket regional domain name (e.g. nova-spike-bucket.s3.us-east-1.amazonaws.com)."
|
|
} |