This commit is contained in:
aynic.os
2021-07-14 20:38:30 +01:00
parent e1f9ef7de9
commit 3ffea66ba8
101 changed files with 3601 additions and 939 deletions
+14
View File
@@ -0,0 +1,14 @@
---
# file: tasks/config.yml
- name: config - discover NVMe EBS
when: aws_ebs_discover | default(True) | bool
disks_ebs_config:
config: "{{ disks_to_mount }}"
become: yes
register: __disks_ebs_config
- set_fact:
disks_to_mount: "{{ disks_to_mount|defaut([]) + __disks_ebs_config['ansible_facts']['config'] }}"
when: __disks_ebs_config is defined and 'ansible_facts' in __disks_ebs_config