Least-privilege permissions
Since your KMS keys protect sensitive information, we recommend following the principle
of least-privileged access. Delegate the minimum permissions required to perform a task when
you define your key policies. Only allow all actions (kms:*
) on a KMS key
policy if you plan to further restrict permissions with additional IAM policies. If you
plan to manage permissions with IAM policies, limit who has the ability to create and
attach IAM policies to IAM principals and monitor for policy changes.
If you allow all actions (kms:*
) in both the key policy and the IAM policy,
the principal has both administrative and usage permissions to the KMS key. As a security
best practice, we recommend only delegating these permissions to specific principals. You
can do this by explicitly naming the principal in the key policy or by limiting which
principals the IAM policy is attached to. You can also use condition keys to restrict permissions. For example,
you can use the aws:PrincipalTag
to allow all actions if the principal making
the API call has the tag specified in the condition rule.
For help understanding how policy statements are evaluated in Amazon, see Policy evaluation logic in the IAM User Guide. We recommend reviewing this topic before writing policies to reduce the chance that your policy has unintended effects, such as providing access to principals that should not have access.
Tip
When testing an application in a non-production envrionment, use IAM Access Analyzer
If you use IAM users instead of IAM roles, we strongly recommend enabling Amazon multi-factor authentication (MFA) to mitigate the vulnerability of long-term credentials. You can use MFA to do the following:
-
Require that users validate their credentials with MFA before performing privileged actions, such as scheduling key deletion.
-
Split ownership of an administrator account password and MFA device between individuals to implement split authorization.
Learn more
Implementing least privileged permissions
When you give an Amazon service permission to use a KMS key, ensure that the permission is valid only for the resources that the service must access on your behalf. This least privilege strategy helps to prevent unauthorized use of a KMS key when requests are passed between Amazon services.
To implement a least privilege strategy, use we recommend using Amazon KMS encryption context condition keys and the global source ARN or source account condition keys.
Using encryption context condition keys
The most effective way to implement least privileged permissions when using Amazon KMS resources is to include the kms:EncryptionContext:context-key or kms:EncryptionContextKeys condition keys in the policy that allows principals to call Amazon KMS cryptographic operations. These condition keys are particularly effective because they associate the permission with the encryption context that is bound to the ciphertext when the resource is encrypted.
Use encryption context conditions keys only when the action in the policy
statement is CreateGrant or
an Amazon KMS symmetric cryptographic operation that takes an
EncryptionContext
parameter, such as the operations like GenerateDataKey or Decrypt. (For a list of supported
operations, see kms:EncryptionContext:context-key or kms:EncryptionContextKeys.) If you use these
condition keys to allow other operations, such as DescribeKey, permission will be
denied.
Set the value to the encryption context that the service uses when it encrypts the resource. This information is typically available in the Security chapter of the service documentation. For example, the encryption context for Amazon Proton identifies the Amazon Proton resource and its associated template. The Amazon Secrets Manager encryption context identifies the secret and its version. The encryption context for Amazon Location identifies the tracker or collection.
The following example key policy statement allows Amazon Location Service to create grants on
behalf of authorized users. This policy statement limits the permission by using the
kms:ViaService, kms:CallerAccount, and
kms:EncryptionContext:context-key
condition keys to tie the permission to a
particular tracker resource.
{ "Sid": "Allow Amazon Location to create grants on behalf of authorized users", "Effect": "Allow", "Principal": { "AWS": "
arn:aws:iam::111122223333:role/LocationTeam
" }, "Action": "kms:CreateGrant", "Resource": "*", "Condition": { "StringEquals": { "kms:ViaService": "geo.us-west-2.amazonaws.com", "kms:CallerAccount": "111122223333
", "kms:EncryptionContext:aws:geo:arn": "arn:aws:geo:us-west-2:111122223333:tracker/SAMPLE-Tracker
" } } }
Using aws:SourceArn
or
aws:SourceAccount
condition keys
When the principal in a key policy statement is an Amazon service principal, we strongly recommend that you use the aws:SourceArn or aws:SourceAccount global condition keys, in addition
to the kms:EncryptionContext:context-key
condition key. The ARN and account values
are included in the authorization context only when a request comes to Amazon KMS from
another Amazon service. This combination of conditions implements least privileged
permissions and avoids a potential confused deputy scenario. Service principals are not typically used as
principals in a key policy, but some Amazon services, such as Amazon CloudTrail, require it.
To use the aws:SourceArn
or aws:SourceAccount
global
condition keys, set the value to the Amazon Resource Name (ARN) or account of the
resource that is being encrypted. For example, in a key policy statement that gives
Amazon CloudTrail permission to encrypt a trail, set the value of aws:SourceArn
to the ARN of the trail. Whenever possible, use aws:SourceArn
, which is
more specific. Set the value to the ARN or an ARN pattern with wildcard characters.
If you don't know the ARN of the resource, use aws:SourceAccount
instead.
Note
If a resource ARN includes characters that are not permitted in an Amazon KMS key
policy, you cannot use that resource ARN in the value of the
aws:SourceArn
condition key. Instead, use the
aws:SourceAccount
condition key.
For details about key policy document rules, see Key policy format.
In the following example key policy, the principal who gets the permissions is the
Amazon CloudTrail service principal, cloudtrail.amazonaws.com
. To implement
least privilege, this policy uses the aws:SourceArn
and
kms:EncryptionContext:context-key
condition keys. The policy statement allows
CloudTrail to use the KMS key to generate the data key that it uses to encrypt a trail. The
aws:SourceArn
and kms:EncryptionContext:context-key
conditions are
evaluated independently. Any request to use the KMS key for the specified
operation must satisfy both conditions.
To restrict the service's permission to the finance
trail in the
example account (111122223333) and us-west-2
Region, this
policy statement sets the aws:SourceArn
condition key to the ARN of a
particular trail. The condition statement uses the ArnEquals operator to ensure that every element in the ARN is evaluated
independently when matching. The example also uses the
kms:EncryptionContext:context-key
condition key to limit the permission to trails
in a particular account and Region.
Before using this key policy, replace the example account ID, Region, and trail name with valid values from your account.
{ "Version": "2012-10-17", "Statement": [ { "Sid": "Allow CloudTrail to encrypt logs", "Effect": "Allow", "Principal": { "Service": "cloudtrail.amazonaws.com" }, "Action": "kms:GenerateDataKey", "Resource": "*", "Condition": { "ArnEquals": { "aws:SourceArn": [ "arn:aws:cloudtrail:
us-west-2
:111122223333
:trail/finance
" ] }, "StringLike": { "kms:EncryptionContext:aws:cloudtrail:arn": [ "arn:aws:cloudtrail:*:111122223333
:trail/*" ] } } } ] }