Skip to content

Commit

Permalink
Updated dependencies and versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mapk-amazon committed Feb 5, 2025
1 parent d458e55 commit 2a2d2df
Show file tree
Hide file tree
Showing 4 changed files with 2,023 additions and 1,426 deletions.
4 changes: 2 additions & 2 deletions lib/infrastructure-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ export class InfrastructureStack extends cdk.Stack {

this.databaseCluster = new rds.DatabaseCluster(this, 'databaseCluster', {
engine: rds.DatabaseClusterEngine.auroraPostgres({
version: rds.AuroraPostgresEngineVersion.VER_13_10,
version: rds.AuroraPostgresEngineVersion.VER_16_1
}),
vpc: props.eksCluster.vpc,
credentials: rds.Credentials.fromSecret(this.databaseSecret),
Expand Down Expand Up @@ -284,7 +284,7 @@ export class InfrastructureStack extends cdk.Stack {
? 'CLUSTER_MULTI_AZ'
: 'SINGLE_INSTANCE',
engineType: 'RABBITMQ',
engineVersion: '3.11.16',
engineVersion: '3.13',
hostInstanceType: rabbitMQInstanceSize,
publiclyAccessible: false,
users: [
Expand Down
2 changes: 1 addition & 1 deletion lib/provider-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class ProviderStack extends cdk.Stack {
.region(cdk.Stack.of(this).region)
.addOns(...addOns)
.enableControlPlaneLogTypes(...controlPlaneLogs)
.version(eks.KubernetesVersion.V1_28);
.version(eks.KubernetesVersion.V1_31);
if (existingVpcId) {
eksClusterBuilder.resourceProvider(
blueprints.GlobalResources.Vpc,
Expand Down
Loading

0 comments on commit 2a2d2df

Please sign in to comment.