bp-check/services/kms.py
EC2 Default User 5db67720fd Initial commit
2024-08-05 02:30:34 +00:00

12 lines
227 B
Python

from models import RuleCheckResult
import boto3
# client = boto3.client("")
def cmk_backing_key_rotation_enabled():
return RuleCheckResult(
passed=False, compliant_resources=[], non_compliant_resources=[]
)