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
|
||||
gather_facts: true
|
||||
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: fail2ban } # add and configure fail2ban with jail file located in `templates/fail2ban.jail`
|
||||
|
||||
- name: Configure Nomad & Consul
|
||||
hosts: nomad
|
||||
roles:
|
||||
# - { 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-consul } # install consul, configure and start the client & server based on `templates/` on nomad group
|
||||
#- { 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-consul } # install consul, configure and start the client & server based on `templates/` on nomad group
|
||||
|
|
|
@ -16,7 +16,8 @@
|
|||
register: result
|
||||
|
||||
- name: Show Output
|
||||
debug: msg="{{ result.stdout_lines }}"
|
||||
debug:
|
||||
msg: "{{ result.stdout_lines }}"
|
||||
|
||||
- name: install common tools
|
||||
ansible.builtin.apt:
|
||||
|
|
|
@ -1,12 +1,46 @@
|
|||
---
|
||||
- name: Add hashicorp GPG key
|
||||
become: true
|
||||
apt_key:
|
||||
url: https://apt.releases.hashicorp.com/gpg
|
||||
state: present
|
||||
#- name: Add hashicorp GPG key
|
||||
# become: true
|
||||
# apt_key:
|
||||
# url: https://apt.releases.hashicorp.com/gpg
|
||||
# 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
|
||||
apt_repository:
|
||||
repo: deb [arch=amd64] https://apt.releases.hashicorp.com {{ ansible_distribution_release }} main
|
||||
state: present
|
||||
shell:
|
||||
cmd: "curl -fsSL https://apt.releases.hashicorp.com/gpg | sudo apt-key add -"
|
||||
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