Sig-I/O joins up with ITGilde Coöperatie
Today, september 2nd 2015 Sig-I/O Automatisering has joined the ITGilde Coöperatie

By joining ITGilde Coöperatie the customers of Sig-I/O Automatisering can make use of the knowledge and skills of a large (~50) group of highly skilled freelance Unix/Linux specialists.
The following (dutch) article was posted on the ITGilde website:
Vandaag verwelkomt ITGilde Mark Janssen als 49ste lid van ITGilde. Naast ITGilde is Mark actief bij de NLUUG en RevSpace . Het motto van Mark is: “over 5 minuten is het opgelost”. De reden voor Mark om aan te sluiten bij ITGilde is een kwalitatief hoogwaardig netwerk met een hoge frequentie van vakgerelateerde bijeenkomsten; gericht op Linux/Unix ondernemers. Daarnaast werkt Mark meer dan fulltime en wil toch meer klanten kunnen helpen dan hij nu aankan. ITGilde is daar de oplossing voor: “ik kan mezelf maar 1 keer inzetten maar met ITGilde beschik ik nu over een pool van goede technische Unix/Linux specialisten!” Welkom Mark!
Read passwords from the 'pass' passwordstore into ansible
Ansible is a great orchestration-tool, and while it has it’s own secure password storage system (Vault), I prefer to use ‘pass’ from http://passwordstore.org
There is no specific ‘pass’ plugin for ansible, but using the ‘pipe’ lookup plugin works quite well
tasks: - name: Debug debug: msg={{lookup('pipe', 'pass some/password/i/need') }}
This can then be used to store API keys, passwords for various accounts, or other information that needs to remain secret while still being able to share and version your ansible plays.
Update 2017: There is now a passwordstore lookup-plugin for ansible