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

1040 Update RDS engine minor version and add retain policy to its logs #71

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion infra/lib/fhir-server-stack.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ import { getConfig } from "./shared/config";
import { vCPU } from "./shared/fargate";
import { addDefaultMetricsToTargetGroup } from "./shared/target-group";
import { isProd, isSandbox, mbToBytes } from "./util";
import { RetentionDays } from "aws-cdk-lib/aws-logs";

type Settings = {
cpu: number;
Expand Down Expand Up @@ -179,7 +180,7 @@ export class FHIRServerStack extends Stack {
}
const dbCluster = new rds.DatabaseCluster(this, "FHIR_DB", {
engine: rds.DatabaseClusterEngine.auroraPostgres({
version: rds.AuroraPostgresEngineVersion.VER_14_4,
version: rds.AuroraPostgresEngineVersion.VER_14_7,
}),
instanceProps: {
vpc: this.vpc,
Expand All @@ -191,6 +192,7 @@ export class FHIRServerStack extends Stack {
storageEncrypted: true,
parameterGroup,
cloudwatchLogsExports: ["postgresql"],
cloudwatchLogsRetention: RetentionDays.ONE_YEAR,
deletionProtection: true,
removalPolicy: RemovalPolicy.RETAIN,
});
Expand Down
Loading