diff --git a/ansible/generate_hcl_files.yml b/ansible/generate_hcl_files.yml index 61bc154..4f51c0a 100644 --- a/ansible/generate_hcl_files.yml +++ b/ansible/generate_hcl_files.yml @@ -176,23 +176,6 @@ dest: "{{ output_dir }}/{{ env_name }}/{{ region_name }}/vpc/{{ cluster_dir }}/{{ item.path | regex_replace('.*' + current.cluster_dir + '/(.*)', '\\1') }}" mode: '0644' loop: "{{ additional_files.files }}" - - - name: install tree command if not present - ansible.builtin.package: - name: tree - state: present - - - name: get tree of repo structure - ansible.builtin.command: "tree -L 3 {{ output_dir }}" - register: tree_output - - - name: Print tree structure of generated files - ansible.builtin.debug: - msg: "{{ tree_output.stdout }}" - - - name: set repo_tree - ansible.builtin.set_fact: - repo_tree: "{{ tree_output.stdout }}" - name: Generate README.md with documentation ansible.builtin.template: