Merge pull request #188 from cloud-neutral-toolkit/codex/remove-import_existing.sh-from-makefile

Remove import existing step from EC2 Makefile
This commit is contained in:
cloudneutral 2025-12-11 18:40:19 +08:00 committed by GitHub
commit 78b095b9c5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,17 +3,14 @@
render:
python ../../render_provider_backend.py
init:
init: render
python ../../render_provider_backend.py
terraform init --upgrade
plan: init
terraform plan
import-existing: init
@echo "Reconciling existing AWS resources (key pair / security group)"
./import_existing.sh
apply: import-existing
apply: init
terraform apply -auto-approve
output: