Lookup or create a KMS Key to configure EKS secrets encryption.
const stack = blueprints.EksBlueprint.builder() .resourceProvider(GlobalResources.KmsKey, new CreateKmsKeyProvider("my-custom-eks-key")) .account("123456789012") .region("us-east-1") .build(app, "east-test-1"); Copy
const stack = blueprints.EksBlueprint.builder() .resourceProvider(GlobalResources.KmsKey, new CreateKmsKeyProvider("my-custom-eks-key")) .account("123456789012") .region("us-east-1") .build(app, "east-test-1");
Configuration options for the KMS Key.
Optional
The alias name for the KMS Key
The key props used
Lookup or create a KMS Key to configure EKS secrets encryption.
Example