nixos-config/infra/backend.tf
2024-11-28 01:14:34 +08:00

15 lines
248 B
HCL

terraform {
backend "local" {
path = "terraform.tfstate"
}
encryption {
method "aes_gcm" "default" {
keys = key_provider.pbkdf2.default
}
state {
method = method.aes_gcm.default
enforced = true
}
}
}