cdk-pipelines-github
cdk-pipelines-github copied to clipboard
This introduces a new property `awsCreds` to configure the AWS credential provider. The old properties `awsCredentials` and `gitHubActionRoleArn` are now deprecated. The change is backwards compatible. To move to the...
Currently there are two ways how to pass credentials: * OIDC * GitHub Secrets In our current environment, we have runners backed by EC2 instances that already provide AWS credentials....
Hi, we are having an issue trying to use the Cypress testing library to run tests. The library lets us run tests in parallel using a matrix. Is there anyway...
I would expect this code to work: ```ts const pipeline = new GitHubWorkflow(app, 'Pipeline', { workflowPath: `${dir}/.github/workflows/deploy.yml`, synth: new ShellStep('Build', { installCommands: ['yarn'], commands: ['yarn build'], }), jobSettings: { if:...
I want to run the CDK workflow as a job inside of another workflow. This should be possible by having a trigger `workflow_call`in the CDK workflow. However, it currently doesn't...
Not sure if this is a bug or working as designed. ``` aws_creds: AwsCredentialsProvider = AwsCredentials.from_git_hub_secrets( access_key_id="AWS_ACCESS_KEY_ID_DEV_EU_WEST_1", secret_access_key="AWS_SECRET_ACCESS_KEY_DEV_EU_WEST_1", ) aws_creds.credential_steps(region="eu-west-1) ``` Produces: ``` - name: Authenticate Via GitHub Secrets uses:...
I would like to be able to execute AWS CLI commands in the post phase of a stage. In my case I obtain some CloudFormation outputs and provide them to...
Not sure if this is a bug but it took me ages to work out a fix and I thought I'd share. unless .dockerignore includes the CDK related directories then...
**Problem** We're trying to leverage this library to run a few pipelines in our CDK project, and we were running into problems where each time the `npx projen build` was...
I'd like to suggest adding the ability to provide job configurations to synth, publish, and default stages. This would be similar to the `synthCodeBuildDefaults`, `codeBuildDefaults`, `assetPublishingCodeBuildDefaults` properties in `pipelines.CodePipeline`(https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.pipelines.CodePipeline.html#synthcodebuilddefaults). The...