We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c8015de commit 005842fCopy full SHA for 005842f
infra/app/app-config/env-config/database.tf
@@ -11,7 +11,7 @@ locals {
11
# Enable extensions that require the rds_superuser role to be created here
12
# See docs/infra/set-up-database.md for more information
13
superuser_extensions = {
14
- "vector": true
+ "vector" : true
15
}
16
} : null
17
infra/modules/service/main.tf
@@ -71,7 +71,7 @@ resource "aws_ecs_task_definition" "app" {
71
family = var.service_name
72
execution_role_arn = aws_iam_role.task_executor.arn
73
task_role_arn = aws_iam_role.app_service.arn
74
- ephemeral_storage {size_in_gib = 40}
+ ephemeral_storage { size_in_gib = 40 }
75
76
container_definitions = jsonencode([
77
{
0 commit comments