Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion SingleViewApi/SingleViewApi.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<PackageReference Include="AWSXRayRecorder.Handlers.EntityFramework" Version="1.1.0" />
<PackageReference Include="Hackney.Core.DynamoDb" Version="1.51.0" />
<PackageReference Include="Hackney.Core.HealthCheck" Version="1.49.0" />
<PackageReference Include="Hackney.Core.JWT" Version="1.71.0-feat-best-field-0001" />
<PackageReference Include="Hackney.Core.JWT" Version="1.87.0" />
<PackageReference Include="Hackney.Core.Logging" Version="1.49.0" />
<PackageReference Include="Hackney.Core.Middleware" Version="1.49.0" />
<PackageReference Include="Hackney.Core.Validation" Version="1.56.0" />
Expand Down
1 change: 1 addition & 0 deletions SingleViewApi/Startup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -394,6 +394,7 @@ public void ConfigureServices(IServiceCollection services)

services.AddHealthChecks();

// Used by Logging Middleware core
services.AddTokenFactory();

services.AddSwaggerGen(c =>
Expand Down
3 changes: 2 additions & 1 deletion terraform/development/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ module "postgres_db" {
db_port = 5302
subnet_ids = data.aws_subnet_ids.all.ids
db_engine = "postgres"
db_engine_version = "16.3" //DMS does not work well with v12
db_engine_version = "16.8" //DMS does not work well with v12
db_instance_class = "db.t3.micro"
db_allocated_storage = 20
maintenance_window = "sun:10:00-sun:10:30"
Expand All @@ -125,4 +125,5 @@ module "postgres_db" {
project_name = "single view"
db_allow_major_version_upgrade = "true"
db_parameter_group_name = "postgres16"
copy_tags_to_snapshot = true
}
2 changes: 1 addition & 1 deletion terraform/production/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ module "postgres_db" {
db_port = 5302
subnet_ids = data.aws_subnet_ids.all.ids
db_engine = "postgres"
db_engine_version = "16.3" //DMS does not work well with v12
db_engine_version = "16.8" //DMS does not work well with v12
db_instance_class = "db.t3.micro"
db_allocated_storage = 20
maintenance_window = "sun:10:00-sun:10:30"
Expand Down
3 changes: 2 additions & 1 deletion terraform/staging/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ module "postgres_db" {
db_port = 5302
subnet_ids = data.aws_subnet_ids.all.ids
db_engine = "postgres"
db_engine_version = "16.3" //DMS does not work well with v12
db_engine_version = "16.8" //DMS does not work well with v12
db_instance_class = "db.t3.micro"
db_allocated_storage = 20
maintenance_window = "sun:10:00-sun:10:30"
Expand All @@ -123,4 +123,5 @@ module "postgres_db" {
project_name = "single view"
db_allow_major_version_upgrade = "true"
db_parameter_group_name = "postgres16"
copy_tags_to_snapshot = true
}
Loading