## Summary - Standardize single quotes to double quotes across deploy, destroy, provision, and restore playbooks ## Test plan - No functional changes — formatting only 🤖 Generated with [Claude Code](https://claude.com/claude-code) Reviewed-on: #9 Co-authored-by: M.V. Hutz <git@maximhutz.me> Co-committed-by: M.V. Hutz <git@maximhutz.me>
16 lines
432 B
YAML
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
|