Files
acdl/scripts/run_lifecycle_destroy.sh
T
Jon Chery e15eea067b docs(milestone): complete v1.15 — Nova Rebrand (tag v1.15.4)
P5 final-review-ship complete: dual-read fallback removed (REQ-164) —
core/env.py NOVA-only, .env.secrets load paths NOVA-only (G-106 retired),
nova_tagging.py hard-fails any acdl:* tag, legacy ACDL_* Gitea secrets
deleted, ACDL_LIFECYCLE_MODE/ACDL_LOCAL_TIER/ACDL_HITL_* exports removed
from scripts, SNS subject → Nova SoD halt (P1-2), bootstrap scripts
NOVA-only. Review: 2 P0 auto-fixed (duplicate delenv), P1-1/P1-2 resolved,
doc-drift fixed. Audit: tags v1.15.0-4 exist; traceability REQ-155..164
all complete; ARCHITECTURE naming table matches codebase. 615 pytest PASS;
run_ci.sh 3-stage PASS. NOVA_MIGRATION.md marked COMPLETE.

---ci---
project: acdl
phase: 5
milestone: v1.15
status: complete
phase_role: final
requirements:
  covered: [REQ-155, REQ-156, REQ-157, REQ-158, REQ-159, REQ-160, REQ-161, REQ-162, REQ-163, REQ-164]
  partial: []
---/ci---
2026-07-30 02:23:55 +00:00

71 lines
2.4 KiB
Bash
Executable File

#!/usr/bin/env bash
# scripts/run_lifecycle_destroy.sh — destroy an L1 module after lifecycle testing.
#
# Usage: run_lifecycle_destroy.sh <module> [ci-vpc-outputs.json]
#
# For VPC-dependent modules, injects CI VPC outputs into the complex contract
# before destroy (so terraform can find the resources in the right VPC).
#
# Lifecycle mode (REQ-134): NOVA_LIFECYCLE_MODE (dual-read NOVA_* preferred,
# ACDL_* fallback until P5) default "plan" = no-op
# (plan mode never applies resources, so there is nothing to destroy; the
# script exits 0 so the pipeline matrix cell stays green). Set to "full"
# for the real `--destroy` against live AWS.
set -euo pipefail
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$ROOT"
MODULE="$1"
CI_VPC_OUTPUTS="${2:-}"
# Lifecycle mode: "plan" (default) skips destroy (nothing was applied);
# "full" runs the real terraform destroy.
# Dual-read: NOVA_* preferred, ACDL_* fallback (removed in P5).
LIFECYCLE_MODE="${NOVA_LIFECYCLE_MODE:-plan}"
if [ "$LIFECYCLE_MODE" != "full" ]; then
echo "lifecycle mode=$LIFECYCLE_MODE — nothing to destroy (plan-only run), exiting 0"
exit 0
fi
CONTRACT="modules/l1/${MODULE}/examples/complex.yml"
VPC_DEPENDENT="alb ecs-service rds uptime"
if echo "$VPC_DEPENDENT" | grep -qw "$MODULE" && [ -n "$CI_VPC_OUTPUTS" ] && [ -f "$CI_VPC_OUTPUTS" ]; then
TMP_CONTRACT="/tmp/acdl-lifecycle-${MODULE}-complex.yml"
python3 -c "
import yaml, json
with open('$CONTRACT') as f:
contract = yaml.safe_load(f)
with open('$CI_VPC_OUTPUTS') as f:
raw = json.load(f)
vpc = {k: v['value'] if isinstance(v, dict) and 'value' in v else v for k, v in raw.items()}
m = '$MODULE'
inputs = contract['infrastructure'][m]['inputs']
if m == 'alb':
inputs['subnets'] = vpc.get('subnet_ids', '')
inputs['vpc_id'] = vpc.get('vpc_id', '')
inputs['security_group'] = vpc.get('ecs_security_group_id', '')
elif m == 'ecs-service':
inputs['subnets'] = vpc.get('subnet_ids', '')
inputs['security_group'] = vpc.get('ecs_security_group_id', '')
inputs['cluster_arn'] = vpc.get('cluster_arn', '')
elif m == 'rds':
inputs['subnet_ids'] = vpc.get('subnet_ids', '')
elif m == 'uptime':
inputs['subnets'] = vpc.get('subnet_ids', '')
inputs['security_group'] = vpc.get('ecs_security_group_id', '')
inputs['cluster_arn'] = vpc.get('cluster_arn', '')
with open('$TMP_CONTRACT', 'w') as f:
yaml.dump(contract, f)
"
CONTRACT="$TMP_CONTRACT"
fi
bash scripts/run_platform.sh --destroy "$CONTRACT"