1
0
Fork 0

rearrange things, automate ansible inventory

This commit is contained in:
Von Random 2025-01-19 23:57:00 +02:00
parent 299b142adc
commit e2423e7e92
11 changed files with 32 additions and 33 deletions

6
ansible/ansible.cfg Normal file
View file

@ -0,0 +1,6 @@
[defaults]
inventory = inventory.yml
remote_user = andrei
private_key_file = id_ed25519_yatf
host_key_checking = False

2
ansible/inventory.yml Normal file
View file

@ -0,0 +1,2 @@
plugin: cloud.terraform.terraform_provider
project_path: ../terraform

24
ansible/nginx.conf.j2 Normal file
View file

@ -0,0 +1,24 @@
{{ ansible_managed | comment }}
user www-data;
worker_processes auto;
pid /run/nginx.pid;
include /etc/nginx/modules-enabled/*.conf;
events { worker_connections 768; }
http {
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type text/html;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
server {
listen 80 default_server;
location / {
return 200 ">>>>>>>>>> I am {{ inventory_hostname }} ({{ ansible_host }}) <<<<<<<<<<\n";
}
}
}

22
ansible/nginx_setup.yml Normal file
View file

@ -0,0 +1,22 @@
---
- name: Configure nginx
become: true
hosts: all
vars:
ansible_python_interpreter: /usr/bin/python3
tasks:
- name: install nginx
ansible.builtin.apt:
name: nginx
state: present
update_cache: true
- name: copy config
ansible.builtin.template:
src: nginx.conf.j2
dest: /etc/nginx/nginx.conf
- name: restart service
ansible.builtin.service:
name: nginx
state: restarted