depot/ops/vault/cfg/config.nix

15 lines
233 B
Nix

{ ... }:
{
terraform = {
backend.gcs = {
bucket = "lukegb-terraform-state";
prefix = "depot/vault";
};
required_providers.vault = {
source = "hashicorp/vault";
version = "3.3.1";
};
};
}