1
0
Fork 0
trainings/terraform/training/files/cipher.sh

7 lines
179 B
Bash
Executable File

#!/bin/bash
ls -1 *.tf | while read f ; do
echo "Ciiphering $f"
cat $f | gpg -e -r arnaud@mailops.fr -r arnaud.choupinette@mailops.fr -r arnaud.morin@gmail.com > $f.gpg
done