This repository has been archived on 2026-07-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
railiance-infra/scripts/sops.sh

11 lines
253 B
Bash

#!/usr/bin/env bash
set -euo pipefail
case "${1:-}" in
edit) sops inventory/group_vars/secrets.sops.yaml ;;
rotate) sops --rotate --in-place inventory/group_vars/secrets.sops.yaml ;;
*)
echo "Usage: scripts/sops.sh [edit|rotate]"
;;
esac