Skip to main content

CDK construct library for Github OpenID Connect Identity Provider

Project description

npm version PyPI version release

cdk-constructs: Experimental

cdk-github-oidc

Inspired by aripalo/aws-cdk-github-oidc, this construct library allows you to create a Github OpenID Connect Identity Provider trust relationship with the Provider construct as well as federated IAM roles for one or multiple Github repositories.

This construct is still in experimental stage and may have breaking changes. However, we aim to make this library as simple as possible.

Sample

import { Provider } from '@pahud/cdk-github-oidc';

// create a new provider
const provider = new Provider(stack, 'GithubOpenIdConnectProvider')
// create an IAM role from this provider
provider.createRole('demo-role',
  // sharing this role across multiple repositories
  [
    { owner: 'octo-org', repo: 'first-repo' },
    { owner: 'octo-org', repo: 'second-repo' },
    { owner: 'octo-org', repo: 'third-repo' },
  ]
)

Import the provider

Each AWS account can only have one GitHub OIDC identity provider. To import the existing one, use Provider.fromAccount():

// import the provider
const provider = Provider.fromAccount(stack, 'GithubOpenIdConnectProvider')
// create a iam role from the imported provider
provider.createRole(...)

Workflow sample

name: demo
on:
  workflow_dispatch: {}
jobs:
  deploy:
    name: Upload to Amazon S3
    runs-on: ubuntu-latest
    env:
      AWS_REGION: us-east-1
    permissions:
      id-token: write # needed to interact with GitHub's OIDC Token endpoint.
      contents: read
    steps:
    - name: Checkout
      uses: actions/checkout@v2

    - name: Configure AWS credentials
      uses: aws-actions/configure-aws-credentials@master
      with:
        role-to-assume: ${{ secrets.AWS_ROLE_ARN_TO_ASSUME }}
        aws-region: ${{ env.AWS_REGION }}

    - name: Sync files to S3
      run: |
        aws s3 sync ./ s3://${{ secrets.AWS_BUCKET }}

Projects using this library

Reference

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pahud-cdk-github-oidc-0.0.160.tar.gz (35.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pahud_cdk_github_oidc-0.0.160-py3-none-any.whl (34.0 kB view details)

Uploaded Python 3

File details

Details for the file pahud-cdk-github-oidc-0.0.160.tar.gz.

File metadata

  • Download URL: pahud-cdk-github-oidc-0.0.160.tar.gz
  • Upload date:
  • Size: 35.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.5

File hashes

Hashes for pahud-cdk-github-oidc-0.0.160.tar.gz
Algorithm Hash digest
SHA256 7d46dddb03d3383b7546a89dbdb8b11636a865568ddb064c9ba5fc85d052f920
MD5 a6d912397e9de11e56418c0be925ebde
BLAKE2b-256 71662f38919817a593bb147c7467bf1425e7c8a36140c7742ab06d7d4e2a9137

See more details on using hashes here.

File details

Details for the file pahud_cdk_github_oidc-0.0.160-py3-none-any.whl.

File metadata

File hashes

Hashes for pahud_cdk_github_oidc-0.0.160-py3-none-any.whl
Algorithm Hash digest
SHA256 30aa5f1c1418dec07c622eb6201c18992c6cd402e3831d39c7bf487376c204e7
MD5 9329a7781296a4db33fd08702ba92e26
BLAKE2b-256 30b122eb377b2d1fd74fb356ae47f1415fdae55a839f262b2ab60026bc3e2f92

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page