File tree 6 files changed +189
-163
lines changed
6 files changed +189
-163
lines changed Original file line number Diff line number Diff line change @@ -15,13 +15,13 @@ Amazon Aurora DSQL.
15
15
2 . Execute the [ schema.sql] ( demo-app/schema.sql ) on the newly created Amazon Aurora DSQL cluster
16
16
3 . The project has been built and tested using below configurations on ` x86 ` architecture
17
17
18
- a. Java - ` v17.0.13 ` and Gradle - ` v8.11.1 `
18
+ a. Java - ` v17.0.14 ` and Gradle - ` v8.13 `
19
19
20
20
``` shell
21
21
# Install SDKMAN - https://sdkman.io/install/
22
22
curl -s " https://get.sdkman.io" | bash
23
- sdk install java 17.0.13 -amzn
24
- sdk install gradle 8.11.1
23
+ sdk install java 17.0.14 -amzn
24
+ sdk install gradle 8.13
25
25
```
26
26
b. Python - ` v3.13`
27
27
@@ -34,7 +34,7 @@ Amazon Aurora DSQL.
34
34
pyenv global 3.13
35
35
` ` `
36
36
37
- c. AWS CDK - ` v2.177 .0`
37
+ c. AWS CDK - ` v2.1006 .0`
38
38
` ` ` shell
39
39
# Install NVM
40
40
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
@@ -43,7 +43,7 @@ Amazon Aurora DSQL.
43
43
nvm install --lts
44
44
45
45
# Install AWS CDK
46
- npm install -g aws-cdk@2.177 .0
46
+ npm install -g aws-cdk@2.1006 .0
47
47
` ` `
48
48
49
49
d. Install ` curl` and ` jq`
Original file line number Diff line number Diff line change 3
3
4
4
# Use Amazon Corretto JDK 17 as the base image
5
5
ARG PLATFORM=linux/arm64
6
- FROM --platform=${PLATFORM} public.ecr.aws/amazoncorretto/amazoncorretto:17.0.13 AS builder
6
+ FROM --platform=${PLATFORM} public.ecr.aws/amazoncorretto/amazoncorretto:17.0.14 AS builder
7
7
8
8
# Set working directory
9
9
WORKDIR /app
@@ -23,7 +23,7 @@ COPY src ./src
23
23
RUN ./gradlew build -x test --no-daemon
24
24
25
25
# Runtime stage
26
- FROM --platform=${PLATFORM} public.ecr.aws/amazoncorretto/amazoncorretto:17.0.13
26
+ FROM --platform=${PLATFORM} public.ecr.aws/amazoncorretto/amazoncorretto:17.0.14
27
27
28
28
# Create non-root user
29
29
RUN yum install -y shadow-utils && \
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.11.1 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.13 -bin.zip
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
Original file line number Diff line number Diff line change 81
81
"@aws-cdk/aws-ec2:bastionHostUseAmazonLinux2023ByDefault" : true ,
82
82
"@aws-cdk/aws-route53-targets:userPoolDomainNameMethodWithoutCustomResource" : true ,
83
83
"@aws-cdk/aws-elasticloadbalancingV2:albDualstackWithoutPublicIpv4SecurityGroupRulesDefault" : true ,
84
- "@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections" : true
84
+ "@aws-cdk/aws-iam:oidcRejectUnauthorizedConnections" : true ,
85
+ "@aws-cdk/core:enableAdditionalMetadataCollection" : true ,
86
+ "@aws-cdk/aws-lambda:createNewPoliciesWithAddToRolePolicy" : true ,
87
+ "@aws-cdk/aws-s3:setUniqueReplicationRoleName" : true
85
88
}
86
89
}
You can’t perform that action at this time.
0 commit comments