7484a0e034
- Dual-mode operation: standalone + c2itall integrated (env var detection)
- SSH keys moved to ~/.ssh/c2deploy_ph-{id} with per-deployment known_hosts
- Ansible output streaming with filtered console + full log capture
- Deployment management menu: discover, SSH, teardown existing deployments
- Cert setup script (setup-cert.sh) deployed to servers for post-DNS LE certs
- Matrix hardening: unique secrets, SSRF protection, rate limits, nginx security headers
- Base hardening: fail2ban systemd backend (Debian 12), SSH limits, nginx jails
- Add-matrix-user helper script deployed to all Matrix servers
- .env support for standalone credential storage
- Config key rename: deploy_id → deployment_id (with backward compat)
- Provider cleanup playbooks for teardown
- Test suite with 50 tests
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
44 lines
1.5 KiB
YAML
44 lines
1.5 KiB
YAML
---
|
|
# Tear down a Phantom Linode instance by label using raw API calls
|
|
# No extra collections needed — uses uri module (same as provisioning)
|
|
|
|
- name: Teardown Phantom Linode Instance
|
|
hosts: localhost
|
|
connection: local
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Validate required variables
|
|
assert:
|
|
that:
|
|
- api_token is defined and api_token != ""
|
|
- instance_label is defined and instance_label != ""
|
|
fail_msg: "api_token and instance_label are required for teardown"
|
|
|
|
- name: List all Linode instances
|
|
uri:
|
|
url: https://api.linode.com/v4/linode/instances
|
|
method: GET
|
|
headers:
|
|
Authorization: "Bearer {{ api_token }}"
|
|
return_content: true
|
|
register: linode_list
|
|
|
|
- name: Find instance by label
|
|
set_fact:
|
|
target_instance: "{{ linode_list.json.data | selectattr('label', 'equalto', instance_label) | list | first | default(None) }}"
|
|
|
|
- name: Delete instance
|
|
uri:
|
|
url: "https://api.linode.com/v4/linode/instances/{{ target_instance.id }}"
|
|
method: DELETE
|
|
headers:
|
|
Authorization: "Bearer {{ api_token }}"
|
|
status_code: 200
|
|
when: target_instance is not none and target_instance != None
|
|
register: deletion
|
|
|
|
- name: Report result
|
|
debug:
|
|
msg: "{{ (target_instance is not none and target_instance != None) | ternary('Instance ' ~ instance_label ~ ' (ID ' ~ target_instance.id | default('?') ~ ') deleted', 'No instance found with label ' ~ instance_label) }}"
|