Skip to content

Conversation

@dennis-ruhe-npo
Copy link

Issue # (if applicable)

Closes #35647.

Reason for this change

The publiclyAccessible option allows Neptune instances to be reached from outside a VPC.

Description of changes

The changes in this PR add the publiclyAccessible option to the Neptune cluster and instance props.

Describe any new or updated permissions being added

None

Description of how you validated changes

  • Unit tests
  • Integration tests
  • Manual testing

Checklist


By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license

@github-actions github-actions bot added the beginning-contributor [Pilot] contributed between 0-2 PRs to the CDK label Nov 27, 2025
@aws-cdk-automation aws-cdk-automation requested a review from a team November 27, 2025 12:36
@github-actions github-actions bot added feature-request A feature should be added or improved. p2 labels Nov 27, 2025
Copy link
Collaborator

@aws-cdk-automation aws-cdk-automation left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(This review is outdated)

@dennis-ruhe-npo dennis-ruhe-npo changed the title feat(aws-neptune-alpha): Add publiclyAccessible feat(neptune-alpha): add publiclyAccessible Nov 27, 2025
@aws-cdk-automation aws-cdk-automation added the pr/needs-further-review PR requires additional review from our team specialists due to the scope or complexity of changes. label Nov 27, 2025
@aws-cdk-automation aws-cdk-automation dismissed their stale review December 2, 2025 12:14

✅ Updated pull request passes all PRLinter validations. Dismissing previous PRLinter review.

@dennis-ruhe-npo dennis-ruhe-npo marked this pull request as ready for review December 2, 2025 12:32
dbInstanceClass: props.instanceType._instanceType,
dbParameterGroupName: props.parameterGroup?.parameterGroupName,
autoMinorVersionUpgrade: props.autoMinorVersionUpgrade === true,
publiclyAccessible: props.publiclyAccessible === true,
Copy link
Contributor

@phuhung273 phuhung273 Dec 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We must use props.publiclyAccessible as not to affect current users, even when they're using default value. Ideally, template should only changes when user explicitly specifies the new param. That's why you see other snapshots also change.

/**
* Neptune engine version 1.4.6.2
*/
public static readonly V1_4_6_2 = new EngineVersion('1.4.6.2');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think maintainers would like to see new version in a separate PR.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

beginning-contributor [Pilot] contributed between 0-2 PRs to the CDK feature-request A feature should be added or improved. p2 pr/needs-further-review PR requires additional review from our team specialists due to the scope or complexity of changes.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

(neptune-alpha): Add PubliclyAccessible option to DatabaseCluster options

3 participants