diff --git a/rhel/system.yml b/rhel/system.yml index ec5c106..8084412 100644 --- a/rhel/system.yml +++ b/rhel/system.yml @@ -67,9 +67,11 @@ path: /etc/security/limits.conf line: '* hard nofile 50000' state: present + become: true - name: Increase Soft nofile Limit ansible.builtin.lineinfile: path: /etc/security/limits.conf line: '* soft nofile 50000' - state: present \ No newline at end of file + state: present + become: true \ No newline at end of file diff --git a/win/main.yml b/win/main.yml index 1a66e6a..c4a86e1 100644 --- a/win/main.yml +++ b/win/main.yml @@ -207,6 +207,48 @@ - name: Import ed.yml import_tasks: ed.yml +- name: Install ES 5.0 + hosts: awsEC2 + gather_facts: no + tasks: + - name: Import es50.yml + import_tasks: es50.yml + +- name: Install ES 6.0 + hosts: awsEC2 + gather_facts: no + tasks: + - name: Import es60.yml + import_tasks: es60.yml + +- name: Install ES 7.0 + hosts: awsEC2 + gather_facts: no + tasks: + - name: Import es70.yml + import_tasks: es70.yml + +- name: Install ES 8.0 + hosts: awsEC2 + gather_facts: no + tasks: + - name: Import es80.yml + import_tasks: es80.yml + +- name: Install ES 9.0 + hosts: awsEC2 + gather_facts: no + tasks: + - name: Import es90.yml + import_tasks: es90.yml + +- name: Setup ES + hosts: awsEC2 + gather_facts: no + tasks: + - name: Import es.yml + import_tasks: es.yml + - name: Setup ADLDS hosts: awsEC2 gather_facts: no