forked from Deuxfleurs/infrastructure
8 lines
210 B
Bash
8 lines
210 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
find {configuration,secrets} -type f \
|
||
|
| grep --perl-regexp --invert-match "\.sample$|\.gen$|/.gitignore$" \
|
||
|
| while read filename; do
|
||
|
consul kv put "${filename}" "@${filename}"
|
||
|
done
|