kms
Cloud KMS
SecurityGCP
General
General information about the service.
Description
Google Cloud KMS allows you to create, import, and manage cryptographic keys and perform encryption operations.
Service ID
cloudkms.googleapis.comResource Pattern
projects/{project}/locations/{location}/keyRings/{keyRing}References
Chat
Powered by AITalk to this service to learn more about it.
Suggested questions:
Naming
The conventions, rules, and restrictions for naming this service.
Naming Convention
kms-{workload}-{environment}Length
1-63
Valid Characters
Lowercase letters, numbers, hyphens
Scope
project
Code
Deploy your infrastructure as code using your preferred tooling.
Official Documentation
terraform
1resource "google_kms_key_ring" "main" {2 name = "kms-${var.environment}"3 location = var.region4}56resource "google_kms_crypto_key" "main" {7 name = "key-${var.environment}"8 key_ring = google_kms_key_ring.main.id9}
Utilities
Utilities to support app deployment or configuration.