Skip to content

Commit

Permalink
Add cleanup task for temporary pip files in generate_hcl_files.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Your Name committed Jun 26, 2025
1 parent 2f3837a commit 4c6a5e1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions ansible/generate_hcl_files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -230,3 +230,11 @@
- {{ output_dir }}/{{ env_name }}/{{ region_name }}/vpc/vpc.hcl
- {{ output_dir }}/{{ env_name }}/{{ region_name }}/vpc/{{ cluster_dir }}/cluster.hcl
Module files are preserved in: {{ output_dir }}/{{ env_name }}/{{ region_name }}/vpc/{{ cluster_dir }}/
- name: cleanup pip files
ignore_errors: yes
ansible.builtin.file:
path: "{{ item }}"
state: absent
loop:
- \~

0 comments on commit 4c6a5e1

Please sign in to comment.