Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit bc820be

Browse files
committed
fix(terraform): fix teardown of project-specific providers
1 parent d280ec5 commit bc820be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ansible/roles/config_terraform/tasks/remove-project-symlinks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
file:
1919
path: "{{ item.path }}"
2020
state: absent
21-
with_items: "{{ project_tf_symlinks | difference(project_tf_symlinks_providers) }}"
21+
with_items: "{{ project_tf_symlinks.files | difference(project_tf_symlinks_providers) }}"
2222
- include_tasks: "../roles/config_terraform/tasks/execute.yml"
2323
when: project_tf_symlinks_providers|d([]) | length > 0
2424

0 commit comments

Comments
 (0)