16 lines
245 B
Bash
Executable File
16 lines
245 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
cd "$(git rev-parse --show-toplevel)"
|
|
|
|
host="$1"
|
|
secret="$2"
|
|
|
|
mkdir -p "hosts/${host}/secrets"
|
|
|
|
agenix -e "hosts/${host}/secrets/new"
|
|
|
|
mv "hosts/${host}/secrets/new" "hosts/${host}/secrets/${secret}.age"
|
|
|