2024-04-16 20:37:47 -07:00
|
|
|
# This playbook basically guarantees that the host is in a production ready state
|
|
|
|
|
---
|
|
|
|
|
- hosts: webhost
|
|
|
|
|
remote_user: root
|
2024-04-20 13:23:24 -07:00
|
|
|
vars:
|
|
|
|
|
websites:
|
|
|
|
|
- shockrah.xyz
|
|
|
|
|
- temper.tv
|
|
|
|
|
- resume.shockrah.xyz
|
2024-04-16 20:37:47 -07:00
|
|
|
tasks:
|
|
|
|
|
- name: Setup nginx
|
2024-04-20 12:49:46 -07:00
|
|
|
import_tasks: ../tasks/nginx-setup.yml
|
2024-04-20 13:23:24 -07:00
|
|
|
- name: Test local sites
|
|
|
|
|
import_tasks: ../tasks/tests/local-site-presence.yml
|
2024-04-20 13:45:07 -07:00
|
|
|
- name: Ensure AWS is setup
|
|
|
|
|
import_tasks: ../tasks/setup-aws-cli.yml
|