- Introduced Aggregator.sol for Chainlink-compatible oracle functionality, including round-based updates and access control. - Added OracleWithCCIP.sol to extend Aggregator with CCIP cross-chain messaging capabilities. - Created .gitmodules to include OpenZeppelin contracts as a submodule. - Developed a comprehensive deployment guide in NEXT_STEPS_COMPLETE_GUIDE.md for Phase 2 and smart contract deployment. - Implemented Vite configuration for the orchestration portal, supporting both Vue and React frameworks. - Added server-side logic for the Multi-Cloud Orchestration Portal, including API endpoints for environment management and monitoring. - Created scripts for resource import and usage validation across non-US regions. - Added tests for CCIP error handling and integration to ensure robust functionality. - Included various new files and directories for the orchestration portal and deployment scripts.
45 lines
1.2 KiB
Bash
Executable File
45 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# Force unlock Terraform state (use only if process is stuck)
|
|
|
|
set -e
|
|
|
|
LOCK_ID="a383e8af-e9b1-a8af-b7f0-36dd3001faa2"
|
|
|
|
echo "=== Force Unlock Terraform State ==="
|
|
echo ""
|
|
echo "⚠️ WARNING: This will force unlock the Terraform state"
|
|
echo " Only use this if the Terraform process is stuck or not running"
|
|
echo ""
|
|
echo "Lock ID: $LOCK_ID"
|
|
echo ""
|
|
|
|
# Check if process is running
|
|
if ps aux | grep -i "terraform apply" | grep -v grep > /dev/null; then
|
|
TERRAFORM_PID=$(ps aux | grep -i "terraform apply" | grep -v grep | awk '{print $2}' | head -1)
|
|
echo "❌ ERROR: Terraform process is still running (PID: $TERRAFORM_PID)"
|
|
echo " Do not force unlock while process is active!"
|
|
echo ""
|
|
echo "Recommendation: Wait for process to complete or kill it first"
|
|
echo " To kill: kill $TERRAFORM_PID"
|
|
exit 1
|
|
fi
|
|
|
|
echo "✅ No Terraform process found - safe to force unlock"
|
|
echo ""
|
|
read -p "Are you sure you want to force unlock? (y/N) " -n 1 -r
|
|
echo
|
|
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
|
|
echo "Cancelled"
|
|
exit 1
|
|
fi
|
|
|
|
echo ""
|
|
echo "Force unlocking..."
|
|
cd terraform/well-architected/cloud-sovereignty
|
|
terraform force-unlock "$LOCK_ID"
|
|
|
|
echo ""
|
|
echo "✅ State unlocked"
|
|
echo ""
|
|
echo "You can now run terraform apply again"
|