oidc-parent/deployment/roles/prepare_devtools/tasks/main.yml

26 lines
473 B
YAML
Raw Normal View History

---
2023-08-09 10:10:02 +00:00
- name: Install basic developer tools
ansible.builtin.apt:
name:
- vim
- tmux
update_cache: true
become: true
- name: Prepare mkcert
block:
- name: Install mkcert
ansible.builtin.apt:
name: mkcert
become: true
- name: Install mkcert CA
ansible.builtin.command:
cmd: "mkcert -install"
2023-08-08 13:21:27 +00:00
environment:
2023-08-09 10:44:36 +00:00
CAROOT: "{{ mkcert_caroot | default('') }}"
changed_when: false
become: false