🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

@planetarium/account-aws-kms

Package Overview
Dependencies
Maintainers
0
Versions
571
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@planetarium/account-aws-kms

Libplanet account implementation using AWS KMS

5.5.1
latest
Source
npm
Version published
Weekly downloads
47
-92.85%
Maintainers
0
Weekly downloads
 
Created
Source

@planetarium/account-aws-kms

An npm package for providing AwsKmsKeyStore, an implementation of KeyStore from @planetarium/account that uses AWS KMS as the backend.

Required permissions

MethodRequired permissionsRequired for AwsKmsKeyStoreOptions.scopingTags
AwsKmsKeyStore.list()kms:ListKeyskms:ListResourceTags
AwsKmsKeyStore.get()kms:ListKeyskms:ListResourceTags
AwsKmsKeyStore.generate()kms:CreateKey, kms:GetPublicKeykms:TagResource
AwsKmsKeyStore.delete()kms:ScheduleKeyDeletion
AwsKmsAccount.sign()1kms:Sign

Replace [NUMERIC_ROOT_ACCOUNT_ID] with your [12-digit root account ID][AWSId]:

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "kms:GetPublicKey",
        "kms:ScheduleKeyDeletion",
        "kms:DescribeKey",
        "kms:ListResourceTags",
        "kms:Sign",
        "kms:TagResource"
      ],
      "Resource": "arn:aws:kms:*:[NUMERIC_ROOT_ACCOUNT_ID]:key/*"
    },
    {
      "Effect": "Allow",
      "Action": [
        "kms:ListKeys",
        "kms:CreateKey"
      ],
      "Resource": "*"
    }
  ]
}

Footnotes

Keywords

libplanet

FAQs

Package last updated on 17 Feb 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts