loops, file globs, ssh_keys...

looking on google, this seems to come up a lot.
have users. each user has N ssh keys. sometimes, one of the users keys is revoked. for example, a crashed cellphone sent in for repair.

we keep keys like this

`

.

├── voxel
│ └── voxel.pub
├── pixel
│ ├── pixelphone3.pub
│ ├── pixel.pub
│ └── revoked
│ └── pixelphone2.pub
└── root
├── voxel.pub
└── pixel.pub

`

with a single user, this works

`

You could put this in it's own file, use include with with_items and loop_control.

https://docs.ansible.com/ansible/playbooks_loops.html#loop-control

odd to have to put that into two files, but exactly what i was looking for