Add reponse for 104
Signed-off-by: Arnaud M. <arnaud.choupinette@mailops.fr>
This commit is contained in:
parent
4ae5f972a7
commit
cea9007bb3
|
|
@ -0,0 +1,4 @@
|
|||
*.tf
|
||||
*.tfstat*
|
||||
.terraform.lock.hcl
|
||||
.terraform
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
#!/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
|
||||
Binary file not shown.
Binary file not shown.
|
|
@ -0,0 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
ls -1 *.gpg | while read f ; do
|
||||
echo "Unciphering $f"
|
||||
n=${f%.gpg}
|
||||
cat $f | gpg -d > $n
|
||||
done
|
||||
Loading…
Reference in New Issue