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

[rds] Add more 11.9 for AuroraPostgresEngineVersionmodule #12266

Closed
1 of 2 tasks
1davidmichael opened this issue Dec 29, 2020 · 1 comment · Fixed by #12267
Closed
1 of 2 tasks

[rds] Add more 11.9 for AuroraPostgresEngineVersionmodule #12266

1davidmichael opened this issue Dec 29, 2020 · 1 comment · Fixed by #12267
Labels
feature-request A feature should be added or improved. needs-triage This issue or PR still needs to be triaged.

Comments

@1davidmichael
Copy link
Contributor

Currently, a new version of Aurora Postgres Engine is available, 11.9. However, this is not supported by the CDK AuroraPostgresEngineVersion enum yet.

aws rds describe-db-engine-versions --engine aurora-postgresql --engine-version 11.9  --region us-east-1
{
    "DBEngineVersions": [
        {
            "Engine": "aurora-postgresql",
            "EngineVersion": "11.9",
            "DBParameterGroupFamily": "aurora-postgresql11",
            "DBEngineDescription": "Aurora (PostgreSQL)",
            "DBEngineVersionDescription": "Aurora PostgreSQL (Compatible with PostgreSQL 11.9)",
            "ValidUpgradeTarget": [],
            "ExportableLogTypes": [
                "postgresql"
            ],
            "SupportsLogExportsToCloudwatchLogs": true,
            "SupportsReadReplica": false,
            "SupportedEngineModes": [
                "provisioned"
            ],
            "SupportedFeatureNames": [
                "s3Import",
                "Comprehend",
                "s3Export",
                "SageMaker",
                "Lambda"
            ],
            "Status": "available",
            "SupportsParallelQuery": false,
            "SupportsGlobalDatabases": true
        }
    ]
}

Use Case

This AuroraPostgresEngineVersion of 11.9 is required to utilize the newest db.r6g instances in preview with the CDK.

https://aws.amazon.com/about-aws/whats-new/2020/12/introducing-amazon-aurora-r6g-instance-types-powered-by-aws-graviton-2-processors-in-preview/

Proposed Solution

I will provide a PR for this:

  /** Version "11.9". */
  public static readonly VER_11_9 = AuroraPostgresEngineVersion.of('11.9', '11', { s3Import: true, s3Export: true });

Other

  • 👋 I may be able to implement this feature request
  • ⚠️ This feature might incur a breaking change

This is a 🚀 Feature Request

@1davidmichael 1davidmichael added feature-request A feature should be added or improved. needs-triage This issue or PR still needs to be triaged. labels Dec 29, 2020
1davidmichael pushed a commit to 1davidmichael/aws-cdk that referenced this issue Dec 29, 2020
closes aws#12266

----

*By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1davidmichael pushed a commit to 1davidmichael/aws-cdk that referenced this issue Dec 29, 2020
closes aws#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 pushed a commit to 1davidmichael/aws-cdk that referenced this issue Dec 29, 2020
@mergify mergify bot closed this as completed in #12267 Dec 29, 2020
mergify bot pushed a commit that referenced this issue Dec 29, 2020
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*
@github-actions
Copy link

⚠️COMMENT VISIBILITY WARNING⚠️

Comments on closed issues are hard for our team to see.
If you need more assistance, please either tag a team member or open a new issue that references this one.
If you wish to keep having a conversation with other community members under this issue feel free to do so.

flochaz pushed a commit to flochaz/aws-cdk that referenced this issue Jan 5, 2021
closes aws#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*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature-request A feature should be added or improved. needs-triage This issue or PR still needs to be triaged.
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant