Files
git/playbooks/destroy.yml
M.V. Hutz e67ceeab7e chore: normalize quote style in playbooks
Standardize single quotes to double quotes for consistency.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-15 22:53:50 -04:00

16 lines
432 B
YAML

- name: Destroy terraform infrastructure.
hosts: localhost
gather_facts: false
vars_files:
- ../vault.yml
tasks:
- name: Destroy Terraform.
community.general.terraform:
project_path: "../terraform"
state: "absent"
init_reconfigure: true
force_init: true
backend_config: "{{ terraform.backend }}"
variables: "{{ terraform.variables }}"
complex_vars: true