Giter Club home page Giter Club logo

cdk-deploy-poetry's Introduction

cdk-deploy-poetry

Deploy Python CDK applications that use Poetry for their dependency management.

Usage

on: [push]

# See https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-amazon-web-services#adding-permissions-settings
permissions:
    id-token: write
    contents: read

jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v4

      # You must configure the AWS crentials yourself
      - name: configure AWS credentials
        uses: aws-actions/configure-aws-credentials@v3
        with:
          audience: sts.amazonaws.com
          role-to-assume: ${{ secrets.ASSUMED_ROLE_ARN }}
          aws-region: ${{ vars.AWS_REGION }}
        
      - name: "AWS CDK Deploy"
        uses: thomaspaulin/cdk-deploy-poetry@master
        with:
          python-version: "3.11"
          role-to-assume: ${{ secrets.ASSUMED_ROLE_ARN }}
          aws-account-id: $${{ secrets.AWS_ACCOUNT_ID }}
          aws-region: ${{ vars.AWS_REGION }}

AWS Trust Policies

Don't forget to edit the role your pipeline assumes to trust your repo and branch. Add each branch you have, or use * but be wary that this violates the principle of least privilege.

Repeated log lines of "Assuming role with OIDC" with a final timeout or the error "Could not assume role with OIDC: Not authorized to perform sts:AssumeRoleWithWebIdentity" indicative of this.

{
    "Effect": "Allow",
    "Principal": {
        "Federated": "<your-identity-provider-arn-goes-here>/token.actions.githubusercontent.com"
    },
    "Action": "sts:AssumeRoleWithWebIdentity",
    "Condition": {
        "StringLike": {
            "token.actions.githubusercontent.com:sub": "repo:<github-org-or-username>/<repo-name>:ref:refs/heads/<branch-name>",
            "token.actions.githubusercontent.com:aud": "sts.amazonaws.com"
        }
    }
}

cdk-deploy-poetry's People

Contributors

thomaspaulin avatar

Watchers

 avatar

cdk-deploy-poetry's Issues

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.