├── .ansible-lint ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .yamllint ├── LICENSE ├── README.md ├── defaults └── main.yml ├── meta └── main.yml ├── molecule └── default │ ├── converge.yml │ ├── molecule.yml │ └── side_effect.yml └── tasks └── main.yml /.ansible-lint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandaniels/ansible-role-create-users/HEAD/.ansible-lint -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandaniels/ansible-role-create-users/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandaniels/ansible-role-create-users/HEAD/.gitignore -------------------------------------------------------------------------------- /.yamllint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandaniels/ansible-role-create-users/HEAD/.yamllint -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandaniels/ansible-role-create-users/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandaniels/ansible-role-create-users/HEAD/README.md -------------------------------------------------------------------------------- /defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandaniels/ansible-role-create-users/HEAD/defaults/main.yml -------------------------------------------------------------------------------- /meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandaniels/ansible-role-create-users/HEAD/meta/main.yml -------------------------------------------------------------------------------- /molecule/default/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandaniels/ansible-role-create-users/HEAD/molecule/default/converge.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandaniels/ansible-role-create-users/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/side_effect.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandaniels/ansible-role-create-users/HEAD/molecule/default/side_effect.yml -------------------------------------------------------------------------------- /tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryandaniels/ansible-role-create-users/HEAD/tasks/main.yml --------------------------------------------------------------------------------