This product is not supported for your selected Datadog site. ().
이 페이지는 아직 영어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우 언제든지 연락주시기 바랍니다.

Metadata

Id: 7350fa23-dcf7-4938-916d-6a60b0c73b50

Cloud Provider: aws

Framework: Terraform

Severity: Medium

Category: Availability

Learn More

Description

This check ensures that AWS Key Management Service (KMS) Customer Master Keys (CMKs) are configured with the is_enabled attribute set to TRUE, making them usable for cryptographic operations such as encryption and decryption. If this attribute is set to FALSE, the CMK becomes unusable, preventing applications and services from accessing encrypted data or generating new data keys. Leaving CMKs disabled can disrupt access to critical resources and services, potentially resulting in application outages, data unavailability, or failed backup and restore operations. Properly enabling CMKs is crucial to maintaining secure and continuous access to resources that depend on AWS KMS.

Compliant Code Examples

resource "aws_kms_key" "a3" {
  description             = "KMS key 1"
  is_enabled = true
}

Non-Compliant Code Examples

resource "aws_kms_key" "a" {
  description             = "KMS key 1"
  is_enabled = false
}