initial creation

This commit is contained in:
2025-05-20 11:57:43 -04:00
commit c98b612926
8447 changed files with 1862526 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
- hosts: ec2
remote_user: root
#become: yes
strategy: free
serial:
- "50%"
vars:
ansible_port: 22
ansible_user: ec2-user
ansible_ssh_private_key_file: /Users/Keys/ansible_lnd_key.pem
tasks:
- name: Install Apache
yum:
name: httpd
state: installed
- name: Remove Apache
yum:
name: httpd
state: removed