Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge #34

Merged
merged 14 commits into from
Dec 29, 2020
Merged

Merge #34

merged 14 commits into from
Dec 29, 2020

Commits on Dec 24, 2020

  1. fix(codepipeline-actions): use codebuild batch iam permissions when `…

    …executeBatchBuild: true` (#12181)
    
    If the `executeBatchBuild` prop is added to trigger a batch build, we also need to switch the IAM permissions to the ones which allow triggering a batch build. This does that.
    
    This should probably have been part of #11741
    tjenkinson authored Dec 24, 2020
    Configuration menu
    Copy the full SHA
    5279f37 View commit details
    Browse the repository at this point in the history
  2. feat(codebuild): add startBatchBuild option (#11743)

    This adds a `startBatchBuild` option to the code build source, to trigger a batch build. The cloudformation property isn't in the official docs yet but is mentioned [here](aws-cloudformation/cloudformation-coverage-roadmap#621 (comment)).
    
    Closes #11663
    tjenkinson authored Dec 24, 2020
    Configuration menu
    Copy the full SHA
    d9353b7 View commit details
    Browse the repository at this point in the history
  3. feat(codebuild): prevent using Secrets in plain-text environment vari…

    …ables (#12150)
    
    If you use a Secret in an environment variable of the default type
    `BuildEnvironmentVariableType.PLAINTEXT`,
    it will be visible in plain text in the AWS Console.
    Add validation that checks for this common mistake,
    along with a flag that allows you to opt out of it.
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    skinny85 authored Dec 24, 2020
    Configuration menu
    Copy the full SHA
    998af8f View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2020

  1. feat(elasticsearch): add support for version 7_8 and 7_9 (#12222)

    closes #12202
    
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    saudkhanzada authored Dec 25, 2020
    Configuration menu
    Copy the full SHA
    09d1f6c View commit details
    Browse the repository at this point in the history
  2. feat(eks): aws-node-termination-handler for spot instances now pulls …

    …the image from public ECR (#12141)
    
    close #12134 
    
    update `aws-node-termination-handler` version to `0.13.2`
    ```ts
    this._spotInterruptHandler = this.addHelmChart('spot-interrupt-handler', {
            chart: 'aws-node-termination-handler',
            version: '0.13.2',
            repository: 'https://aws.github.io/eks-charts',
            namespace: 'kube-system',
            values: {
              'nodeSelector.lifecycle': LifecycleLabel.SPOT,
            },
          });
    ```
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    neilkuan authored Dec 25, 2020
    Configuration menu
    Copy the full SHA
    c752fab View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2020

  1. feat(s3): option to auto delete objects upon bucket removal (#12090)

    Use the custom resource provider from core to delete objects in the
    bucket. A bucket policy gives the correct permissions to the provider's
    Lambda function role.
    
    Credits to @Chriscbr for starting the work on this.
    
    Closes #3297
    Closes #9751
    
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    jogold authored Dec 26, 2020
    Configuration menu
    Copy the full SHA
    32e9c23 View commit details
    Browse the repository at this point in the history

Commits on Dec 27, 2020

  1. feat(elasticsearch): Support EnableVersionUpgrade update policy (#1…

    …2239)
    
    See https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-attribute-updatepolicy.html#cfn-attributes-updatepolicy-upgradeelasticsearchdomain
    
    Closes [#12210](#12210)
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    hassanazharkhan authored Dec 27, 2020
    Configuration menu
    Copy the full SHA
    14f8b06 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2020

  1. chore(lambda-nodejs): always use globally installed esbuild in Docker (

    …#12070)
    
    Bundling sets the working directory to `cdk.AssetStaging.BUNDLING_INPUT_DIR`
    but we want to force `npx` to always use the globally installed
    `esbuild` and not a version available in the mounted volume.
    
    Closes #12007
    
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    jogold authored Dec 28, 2020
    Configuration menu
    Copy the full SHA
    6be8500 View commit details
    Browse the repository at this point in the history
  2. feat(rds): add support for setting public accessibility (#12164)

    Closes #12093
    
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    saudkhanzada authored Dec 28, 2020
    Configuration menu
    Copy the full SHA
    b8f48e5 View commit details
    Browse the repository at this point in the history
  3. feat(rds): add grantConnect for RDS Proxy (#12243)

    Closes: #10133
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    saudkhanzada authored Dec 28, 2020
    Configuration menu
    Copy the full SHA
    eb45ca8 View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2020

  1. chore(deps-dev): bump esbuild from 0.8.20 to 0.8.27 (#12260)

    Bumps [esbuild](https://github.com/evanw/esbuild) from 0.8.20 to 0.8.27.
    - [Release notes](https://github.com/evanw/esbuild/releases)
    - [Changelog](https://github.com/evanw/esbuild/blob/master/CHANGELOG.md)
    - [Commits](evanw/esbuild@v0.8.20...v0.8.27)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    
    Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
    dependabot-preview[bot] authored Dec 29, 2020
    Configuration menu
    Copy the full SHA
    d18756d View commit details
    Browse the repository at this point in the history
  2. fix(elasticsearch): domain configured with access policies and a cust…

    …om kms key fails to deploy (#11699)
    
    The problem was that we were missing the necessary kms permissions for the custom resource that applies the access policies.
    
    Fixes #11412
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    iliapolo authored Dec 29, 2020
    Configuration menu
    Copy the full SHA
    245ee6a View commit details
    Browse the repository at this point in the history
  3. chore(rds): add additional AuroraPostgresEngineVersion 11.9 (#12267)

    closes #12266
    
    This change adds support for `AuroraPostgresEngineVersion` version 11.9 used for db.r6g instance types Aurora.
    
    https://aws.amazon.com/about-aws/whats-new/2020/12/introducing-amazon-aurora-r6g-instance-types-powered-by-aws-graviton-2-processors-in-preview/
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    1davidmichael authored Dec 29, 2020
    Configuration menu
    Copy the full SHA
    534199b View commit details
    Browse the repository at this point in the history
  4. docs: Add Cloudfront invalidation example for S3 deployment (#12238)

    This workaround was discussed in this issue: #6243 (comment)
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    GibzonDev authored Dec 29, 2020
    Configuration menu
    Copy the full SHA
    0b6f0dd View commit details
    Browse the repository at this point in the history