Package Exports
- cdk-assume-role-plugin
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cdk-assume-role-plugin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
cdk-assume-role-plugin
Adds assume role and mfa support to cdk apps
⚠️ This is experimental and subject to breaking changes.
Installation
npm install cdk-assume-role-pluginHow to use
There are two ways to tell cdk to use the plugin. The first way is to include an explicit --plugin option whenever you use a cdk command.
npx cdk deploy --plugin "cdk-assume-role-plugin" *StackThe second way is to add the following entry to the cdk.json file
// cdk.json
{
"app": "npx ts-node bin/YOURAPP.ts",
"plugin": ["cdk-assume-role-plugin"]
}Finally, add the account / profile mapping in the package.json
// package.json
{
...
"devDependencies": {
"aws-cdk": "^1.15.0",
"cdk-assume-role-plugin": "^0.0.1",
...
},
...
"cdkAssumeRolePlugin": {
"userProfile": "idp",
"roles": {
"YOUR_ACCOUNT_ID": "YOUR_ROLE_NAME",
"YOUR_ACCOUNT_ID": "YOUR_ROLE_NAME"
}
}
}Environment Variables
The plugin supports the following environment variables:
AWS_SHARED_CREDENTIALS_FILE– Specifies the location of the file that the AWS CLI uses to store access keys. The default path is~/.aws/credentials).IGNORE_CDK_ASSUME_ROLE_PLUGIN=true- Turn off the plugin. Defaults tofalse.CDK_ASSUME_ROLE_PLUGIN_CONFIG- Specifies the localtion of the global plugin config. Defaults to~/.cdkassumeroleplugin.json