adds hashicorp apt key role
This commit is contained in:
parent
c5281bd0fb
commit
f69a8b87d1
1 changed files with 12 additions and 0 deletions
12
ansible/roles/hashicorp-apt/tasks/main.yml
Normal file
12
ansible/roles/hashicorp-apt/tasks/main.yml
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
---
|
||||||
|
- 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
|
Loading…
Reference in a new issue