Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@blimmer/cdk-circleci-oidc
Advanced tools
This repository contains constructs to communicate between CircleCI and AWS via an Open ID Connect (OIDC) provider. The process is described in [this CircleCI blog post](https://circleci.com/blog/openid-connect-identity-tokens/).
This repository contains constructs to communicate between CircleCI and AWS via an Open ID Connect (OIDC) provider. The process is described in this CircleCI blog post.
By using the OpenID Connect provider, you can communicate with AWS from CircleCI without saving static credentials
(e.g., AWS_ACCESS_KEY_ID
and AWS_SECRET_ACCESS_KEY
) in your CircleCI project settings or a context. Removing
static credentials, especially in light of the early 2023 breach,
is a best practice for security.
Install the package:
npm install @blimmer/cdk-circleci-oidc
or
yarn add @blimmer/cdk-circleci-oidc
Then, create the provider and role(s).
import { Stack, StackProps } from 'aws-cdk-lib';
import { CircleCiOidcProvider, CircleCiOidcRole } from '@blimmer/cdk-circleci-oidc';
import { Construct } from 'constructs';
import { ManagedPolicy, PolicyStatement } from 'aws-cdk-lib/aws-iam';
import { Bucket } from 'aws-cdk-lib/aws-s3';
export class CircleCiStack extends Stack {
readonly provider: CircleCiOidcProvider; // export for use in other stacks
constructor(scope: Construct, id: string, props?: StackProps) {
super(scope, id, props);
this.provider = new CircleCiOidcProvider(this, 'OidcProvider', {
// Find your organization ID in the CircleCI dashboard under "Organization Settings"
organizationId: '11111111-2222-3333-4444-555555555555',
});
const myCircleCiRole = new CircleCiOidcRole(this, 'MyCircleCiRole', {
circleCiOidcProvider: this.provider,
roleName: "MyCircleCiRole",
// Pass some managed policies to the role
managedPolicies: [
ManagedPolicy.fromAwsManagedPolicyName('AmazonS3ReadOnlyAccess'),
],
})
// You can also access the role from the construct. This allows adding roles and using `grant` methods after the
// construct has been created.
myCircleCiRole.role.addToPolicy(new PolicyStatement({
actions: ['s3:ListAllMyBuckets'],
resources: ['*'],
}));
const bucket = new Bucket(this, 'MyBucket');
bucket.grantRead(myCircleCiRole.role);
}
}
Now, in your .circleci/config.yml
file, you can use the AWS CLI Orb
to assume your new role.
version: 2.1
orbs:
aws-cli: circleci/aws-cli@3.1.4 # https://circleci.com/developer/orbs/orb/circleci/aws-cli
workflows:
version: 2
build:
jobs:
- oidc-job:
context: oidc-assumption # You _must_ use a context, even if it doesn't contain any secrets (see https://circleci.com/docs/openid-connect-tokens/#openid-connect-id-token-availability)
jobs:
oidc-job:
docker:
- image: cimg/base:stable
steps:
- checkout
# https://circleci.com/developer/orbs/orb/circleci/aws-cli#commands-setup
- aws-cli/setup:
role-arn: 'arn:aws:iam::123456789101:role/MyCircleCiRole'
- run:
name: List S3 Buckets
command: aws s3 ls
For detailed API docs, see API.md.
Contributions, issues, and feedback are welcome!
FAQs
AWS CDK construct to create OIDC roles for CircleCI jobs
The npm package @blimmer/cdk-circleci-oidc receives a total of 0 weekly downloads. As such, @blimmer/cdk-circleci-oidc popularity was classified as not popular.
We found that @blimmer/cdk-circleci-oidc demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.