Files
opentf/website/docs/language/state/examples/encryption/gcp_kms.tf
Oleksandr Levchenkov 3fdd533d9c add website docs for GCP KMS key provider (#1459)
Signed-off-by: ollevche <ollevche@gmail.com>
2024-04-04 12:08:33 +03:00

8 lines
202 B
HCL

terraform {
encryption {
key_provider "gcp_kms" "basic" {
kms_encryption_key = "projects/local-vehicle-id/locations/global/keyRings/ringid/cryptoKeys/keyid"
key_length = 32
}
}
}