fixes hashicorp key add
This commit is contained in:
parent
62327b88c0
commit
83a15d1c51
3 changed files with 50 additions and 15 deletions
|
@ -1,16 +1,16 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
- name: Redbrick Nomad, Consul and general management
|
- name: Redbrick general management
|
||||||
hosts: all
|
hosts: all
|
||||||
gather_facts: true
|
gather_facts: true
|
||||||
roles:
|
roles:
|
||||||
#- { role: apt } # update all packages, equivalent to `apt update && apt upgrade`
|
- { role: apt } # update all packages, equivalent to `apt update && apt upgrade`
|
||||||
#- { role: ssh } # add users defined in roles/defaults/main.yml
|
#- { role: ssh } # add users defined in roles/defaults/main.yml
|
||||||
#- { role: fail2ban } # add and configure fail2ban with jail file located in `templates/fail2ban.jail`
|
#- { role: fail2ban } # add and configure fail2ban with jail file located in `templates/fail2ban.jail`
|
||||||
|
|
||||||
- name: Configure Nomad & Consul
|
- name: Configure Nomad & Consul
|
||||||
hosts: nomad
|
hosts: nomad
|
||||||
roles:
|
roles:
|
||||||
# - { role: hashicorp-apt } # add hashicorp apt repo to apt sources
|
#- { role: hashicorp-apt } # add hashicorp apt repo to apt sources
|
||||||
# - { role: configure-nomad } # install nomad, configure and start the client & server based on `templates/` on nomad group
|
#- { role: configure-nomad } # install nomad, configure and start the client & server based on `templates/` on nomad group
|
||||||
# - { role: configure-consul } # install consul, configure and start the client & server based on `templates/` on nomad group
|
#- { role: configure-consul } # install consul, configure and start the client & server based on `templates/` on nomad group
|
||||||
|
|
|
@ -16,7 +16,8 @@
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
- name: Show Output
|
- name: Show Output
|
||||||
debug: msg="{{ result.stdout_lines }}"
|
debug:
|
||||||
|
msg: "{{ result.stdout_lines }}"
|
||||||
|
|
||||||
- name: install common tools
|
- name: install common tools
|
||||||
ansible.builtin.apt:
|
ansible.builtin.apt:
|
||||||
|
|
|
@ -1,12 +1,46 @@
|
||||||
---
|
---
|
||||||
- name: Add hashicorp GPG key
|
#- name: Add hashicorp GPG key
|
||||||
become: true
|
# become: true
|
||||||
apt_key:
|
# apt_key:
|
||||||
url: https://apt.releases.hashicorp.com/gpg
|
# url: https://apt.releases.hashicorp.com/gpg
|
||||||
state: present
|
# state: present
|
||||||
|
#
|
||||||
|
#- name: Add hashicorp repository
|
||||||
|
# become: true
|
||||||
|
# apt_repository:
|
||||||
|
# repo: deb [arch=amd64] https://apt.releases.hashicorp.com {{ ansible_distribution_release }} main
|
||||||
|
# state: present
|
||||||
|
|
||||||
- name: Add hashicorp repository
|
#- name: Add Vault/Hashicorp apt key
|
||||||
|
# apt_key:
|
||||||
|
# url: "https://apt.releases.hashicorp.com/gpg"
|
||||||
|
# state: present
|
||||||
|
# become: true
|
||||||
|
# when: ansible_pkg_mgr == 'apt'
|
||||||
|
#
|
||||||
|
#- name: Add Vault/Hashicorp apt repo
|
||||||
|
# apt_repository:
|
||||||
|
# repo: "deb https://apt.releases.hashicorp.com/gpg {{ ansible_distribution_release }} main"
|
||||||
|
# state: present
|
||||||
|
# become: true
|
||||||
|
# when: ansible_pkg_mgr == 'apt'
|
||||||
|
|
||||||
|
- name: Add Hashicorp apt key
|
||||||
become: true
|
become: true
|
||||||
apt_repository:
|
shell:
|
||||||
repo: deb [arch=amd64] https://apt.releases.hashicorp.com {{ ansible_distribution_release }} main
|
cmd: "curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -"
|
||||||
state: present
|
register: result
|
||||||
|
|
||||||
|
- name: Print out result
|
||||||
|
debug:
|
||||||
|
msg: "{{ result.stdout }}"
|
||||||
|
|
||||||
|
- name: Add Hashicorp repository
|
||||||
|
become: true
|
||||||
|
shell:
|
||||||
|
cmd: 'sudo apt-add-repository "deb [arch=amd64] https://apt.releases.hashicorp.com $(lsb_release -cs) main"'
|
||||||
|
register: result
|
||||||
|
|
||||||
|
- name: Print out results
|
||||||
|
debug:
|
||||||
|
msg: "{{ result.stdout }}"
|
||||||
|
|
Loading…
Reference in a new issue