Add a post-install task file

This commit is contained in:
Romain Dessort 2017-11-15 17:32:18 -05:00
parent 2fe548ce4e
commit 16a1111345
2 changed files with 6 additions and 0 deletions

View file

@ -15,6 +15,7 @@ machine and an Amazon security access key pair created for your account.
By default, this role does nothing (no `main.yml` file).
* `create-instance.yml`: create new EC2 instances
* `post-install.yml`: remove admin user created on Debian instances
## Variables

View file

@ -0,0 +1,5 @@
---
- name: Remove admin user
user:
name: admin
state: absent