key_arn

Type string
Module kms-key
Version 0.1.0

ARN of the KMS key.

The ARN of the KMS key.

Example Value

arn:aws:kms:us-east-1:123456789012:key/1234abcd-12ab-34cd-56ef-1234567890ab

Usage

module "kms_key" {
  source  = "registry.patterneddesigns.ca/patterneddesigns/kms-key/aws"
  version = "0.1.0"
  # ... inputs
}

# Access this output
output "key_arn" {
  value = module.kms_key.key_arn
}