Skip to content

Commit c81aaa6

Browse files
committed
linter
1 parent 0e688c6 commit c81aaa6

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

config_base_playbook.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
---
2-
- hosts: base
3-
gather_facts: yes
2+
- name: Common configuration
3+
hosts: base
4+
gather_facts: true
45
become: true
56
tasks:
6-
- name: Read vars from secrets file
7-
include_vars: "{{ inventory_dir }}/secrets/secrets.yml"
8-
no_log: true
9-
tags:
10-
- always
7+
- name: Read vars from secrets file
8+
ansible.builtin.include_vars: "{{ inventory_dir }}/secrets/secrets.yml"
9+
no_log: true
10+
tags:
11+
- always
1112
roles:
1213
- role: common
1314
tags: ['core', 'base', 'common']
@@ -22,5 +23,5 @@
2223
# at the moment it only is enabled for the vm inventory so maybe it is not necessary at all
2324
- role: selfsigned_certs
2425
when:
25-
- "{{ use_selfsigned_certs | default(false) | bool }}"
26-
tags: ['core', 'base', 'selfsigned_certs']
26+
- "use_selfsigned_certs | default(false) | bool"
27+
tags: ['core', 'base', 'selfsigned_certs']

0 commit comments

Comments
 (0)