CreateKey
Creates a unique customer managed KMS key in your AWS account and Region. You can use a KMS key in cryptographic operations, such as encryption and signing. Some AWS services let you use KMS keys that you create and manage to protect your service resources.
A KMS key is a logical representation of a cryptographic key. In addition to the key material used in cryptographic operations, a KMS key includes metadata, such as the key ID, key policy, creation date, description, and key state.
Use the parameters of CreateKey to specify the type of KMS key, the source of
its key material, its key policy, description, tags, and other properties.
Note
AWS KMS has replaced the term customer master key (CMK) with AWS Key Management Service key and KMS key. The concept has not changed. To prevent breaking changes, AWS KMS is keeping some variations of this term.
To create different types of KMS keys, use the following guidance:
- Symmetric encryption KMS key
-
By default,
CreateKeycreates a symmetric encryption KMS key with key material that KMS generates. This is the basic and most widely used type of KMS key, and provides the best performance.To create a symmetric encryption KMS key, you don't need to specify any parameters. The default value for
KeySpec,SYMMETRIC_DEFAULT, the default value forKeyUsage,ENCRYPT_DECRYPT, and the default value forOrigin,AWS_KMS, create a symmetric encryption KMS key with KMS key material.If you need a key for basic encryption and decryption or you are creating a KMS key to protect your resources in an AWS service, create a symmetric encryption KMS key. The key material in a symmetric encryption key never leaves AWS KMS unencrypted. You can use a symmetric encryption KMS key to encrypt and decrypt data up to 4,096 bytes, but they are typically used to generate data keys and data keys pairs. For details, see GenerateDataKey and GenerateDataKeyPair.
- Asymmetric KMS keys
-
To create an asymmetric KMS key, use the
KeySpecparameter to specify the type of key material in the KMS key. Then, use theKeyUsageparameter to determine whether the KMS key will be used to encrypt and decrypt or sign and verify. You can't change these properties after the KMS key is created.Asymmetric KMS keys contain an RSA key pair, Elliptic Curve (ECC) key pair, ML-DSA key pair or an SM2 key pair (China Regions only). The private key in an asymmetric KMS key never leaves AWS KMS unencrypted. However, you can use the GetPublicKey operation to download the public key so it can be used outside of AWS KMS. Each KMS key can have only one key usage. KMS keys with RSA key pairs can be used to encrypt and decrypt data or sign and verify messages (but not both). KMS keys with NIST-standard ECC key pairs can be used to sign and verify messages or derive shared secrets (but not both). KMS keys with
ECC_SECG_P256K1can be used only to sign and verify messages. KMS keys with ML-DSA key pairs can be used to sign and verify messages. KMS keys with SM2 key pairs (China Regions only) can be used to either encrypt and decrypt data, sign and verify messages, or derive shared secrets (you must choose one key usage type). For information about asymmetric KMS keys, see Asymmetric KMS keys in the AWS Key Management Service Developer Guide. - HMAC KMS key
-
To create an HMAC KMS key, set the
KeySpecparameter to a key spec value for HMAC KMS keys. Then set theKeyUsageparameter toGENERATE_VERIFY_MAC. You must set the key usage even thoughGENERATE_VERIFY_MACis the only valid key usage value for HMAC KMS keys. You can't change these properties after the KMS key is created.HMAC KMS keys are symmetric keys that never leave AWS KMS unencrypted. You can use HMAC keys to generate (GenerateMac) and verify (VerifyMac) HMAC codes for messages up to 4096 bytes.
- Multi-Region primary keys
-
To create a multi-Region primary key in the local AWS Region, use the
MultiRegionparameter with a value ofTrue. To create a multi-Region replica key, that is, a KMS key with the same key ID and key material as a primary key, but in a different AWS Region, use the ReplicateKey operation. To change a replica key to a primary key, and its primary key to a replica key, use the UpdatePrimaryRegion operation.You can create multi-Region KMS keys for all supported KMS key types: symmetric encryption KMS keys, HMAC KMS keys, asymmetric encryption KMS keys, and asymmetric signing KMS keys. You can also create multi-Region keys with imported key material. However, you can't create multi-Region keys in a custom key store.
This operation supports multi-Region keys, an AWS KMS feature that lets you create multiple interoperable KMS keys in different AWS Regions. Because these KMS keys have the same key ID, key material, and other metadata, you can use them interchangeably to encrypt data in one AWS Region and decrypt it in a different AWS Region without re-encrypting the data or making a cross-Region call. For more information about multi-Region keys, see Multi-Region keys in AWS KMS in the AWS Key Management Service Developer Guide.
- Imported key material
-
To import your own key material into a KMS key, begin by creating a KMS key with no key material. To do this, use the
Originparameter ofCreateKeywith a value ofEXTERNAL. Next, use GetParametersForImport operation to get a public key and import token. Use the wrapping public key to encrypt your key material. Then, use ImportKeyMaterial with your import token to import the key material. For step-by-step instructions, see Importing Key Material in the AWS Key Management Service Developer Guide .You can import key material into KMS keys of all supported KMS key types: symmetric encryption KMS keys, HMAC KMS keys, asymmetric encryption KMS keys, and asymmetric signing KMS keys. You can also create multi-Region keys with imported key material. However, you can't import key material into a KMS key in a custom key store.
To create a multi-Region primary key with imported key material, use the
Originparameter ofCreateKeywith a value ofEXTERNALand theMultiRegionparameter with a value ofTrue. To create replicas of the multi-Region primary key, use the ReplicateKey operation. For instructions, see Importing key material step 1. For more information about multi-Region keys, see Multi-Region keys in AWS KMS in the AWS Key Management Service Developer Guide. - Custom key store
-
A custom key store lets you protect your AWS resources using keys in a backing key store that you own and manage. When you request a cryptographic operation with a KMS key in a custom key store, the operation is performed in the backing key store using its cryptographic keys.
AWS KMS supports AWS CloudHSM key stores backed by an AWS CloudHSM cluster and external key stores backed by an external key manager outside of AWS. When you create a KMS key in an AWS CloudHSM key store, AWS KMS generates an encryption key in the AWS CloudHSM cluster and associates it with the KMS key. When you create a KMS key in an external key store, you specify an existing encryption key in the external key manager.
Note
Some external key managers provide a simpler method for creating a KMS key in an external key store. For details, see your external key manager documentation.
Before you create a KMS key in a custom key store, the
ConnectionStateof the key store must beCONNECTED. To connect the custom key store, use the ConnectCustomKeyStore operation. To find theConnectionState, use the DescribeCustomKeyStores operation.To create a KMS key in a custom key store, use the
CustomKeyStoreId. Use the defaultKeySpecvalue,SYMMETRIC_DEFAULT, and the defaultKeyUsagevalue,ENCRYPT_DECRYPTto create a symmetric encryption key. No other key type is supported in a custom key store.To create a KMS key in an AWS CloudHSM key store, use the
Originparameter with a value ofAWS_CLOUDHSM. The AWS CloudHSM cluster that is associated with the custom key store must have at least two active HSMs in different Availability Zones in the AWS Region.To create a KMS key in an external key store, use the
Originparameter with a value ofEXTERNAL_KEY_STOREand anXksKeyIdparameter that identifies an existing external key.Note
Some external key managers provide a simpler method for creating a KMS key in an external key store. For details, see your external key manager documentation.
Cross-account use: No. You cannot use this operation to create a KMS key in a different AWS account.
Required permissions: kms:CreateKey (IAM policy). To use the
Tags parameter, kms:TagResource (IAM policy). For examples and information about related
permissions, see Allow a user
to create KMS keys in the
AWS Key Management Service Developer Guide.
Related operations:
Eventual consistency: The AWS KMS API follows an eventual consistency model. For more information, see AWS KMS eventual consistency.
Request Syntax
{
"BypassPolicyLockoutSafetyCheck": boolean,
"CustomerMasterKeySpec": "string",
"CustomKeyStoreId": "string",
"Description": "string",
"KeySpec": "string",
"KeyUsage": "string",
"MultiRegion": boolean,
"Origin": "string",
"Policy": "string",
"Tags": [
{
"TagKey": "string",
"TagValue": "string"
}
],
"XksKeyId": "string"
}
Request Parameters
For information about the parameters that are common to all actions, see Common Parameters.
The request accepts the following data in JSON format.
Note
In the following list, the required parameters are described first.
- BypassPolicyLockoutSafetyCheck
-
Skips ("bypasses") the key policy lockout safety check. The default value is false.