diff --git a/tasks/main.yaml b/tasks/main.yaml index 3b53fc1..bd311a4 100644 --- a/tasks/main.yaml +++ b/tasks/main.yaml @@ -3,7 +3,7 @@ - name: required debian packages apt: pkg: - # ansible + # required by ansible - unzip - name: get latest terraform release version @@ -11,11 +11,11 @@ url: https://checkpoint-api.hashicorp.com/v1/check/terraform register: terraform_release_query -- name: check if terraform version matches - command: terraform --version - failed_when: False - changed_when: False - register: terraform_version_command +# - name: check if terraform version matches +# command: terraform --version +# failed_when: False +# changed_when: False +# register: terraform_version_command - name: get terraform release checksums uri: @@ -23,14 +23,6 @@ return_content: yes register: terraform_release_checksums_uri -- debug: - msg: - terraform_current_version: "{{ terraform_current_version }}" - ansible_architecture: "{{ ansible_architecture }}" - terraform_download_checksum: "{{ terraform_download_checksum }}" - terraform_download_filename: "{{ terraform_download_filename }}" - terraform_download_checksum: "{{ terraform_download_checksum }}" - - name: download terraform release get_url: url: "{{ terraform_download_url }}" @@ -38,7 +30,7 @@ checksum: "{{ terraform_download_checksum }}" register: terraform_download -- name: extract and install Terraform +- name: extract and install terraform unarchive: src: "{{terraform_download_dest}}" dest: /usr/local/bin