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---
24 lines
535 B
Terraform
24 lines
535 B
Terraform
variable "cidr" {
|
|
type = string
|
|
description = "VPC CIDR block, e.g. 10.0.0.0/16."
|
|
default = null
|
|
}
|
|
|
|
variable "azs" {
|
|
type = string
|
|
description = "Comma-separated availability zones, e.g. us-east-1a,us-east-1b."
|
|
default = "us-east-1a"
|
|
}
|
|
|
|
variable "name" {
|
|
type = string
|
|
description = "Name tag for the VPC and child resources."
|
|
default = "nova-vpc"
|
|
}
|
|
|
|
variable "region" {
|
|
type = string
|
|
description = "AWS region (provider-level; not a resource arg)."
|
|
default = null
|
|
}
|