fix alpine packages

- update terraform package version
This commit is contained in:
Matthew Stobbs
2025-03-20 22:41:16 -06:00
parent 40e9e97cce
commit ed3cc1d560
9 changed files with 52 additions and 17 deletions

View File

@@ -9,6 +9,8 @@
file: config/terraform.yml
- name: Append terraform
when:
- terraform.method == 'sys'
block:
- name: Append terraform to pkg_tap
when:
@@ -28,6 +30,12 @@
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + terraform.pkgs }}"
- name: Set terraform_configured
ansible.builtin.set_fact:
terraform_configured: true
- name: Append terraform to pkg_archive
when:
- terraform.method == 'archive'
ansible.builtin.set_fact:
pkg_archive: "{{ pkg_archive + ['terraform'] }}"
- name: Set terraform_configured
ansible.builtin.set_fact:
terraform_configured: true

View File

@@ -9,6 +9,8 @@
file: config/terraformls.yml
- name: Append terraformls
when:
- terraformls.method == 'sys'
block:
- name: Append terraformls to pkg_tap
when:
@@ -28,6 +30,12 @@
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + terraformls.pkgs }}"
- name: Set terraformls_configured
ansible.builtin.set_fact:
terraformls_configured: true
- name: Append terraformls to pkg_go
when:
- terraform.method == 'gosrc'
ansible.builtin.set_fact:
pkg_go: "{{ pkg_go + [terraformls.gopkg] }}"
- name: Set terraformls_configured
ansible.builtin.set_fact:
terraformls_configured: true