Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio committed Dec 13, 2023
1 parent 8cf4c7a commit 2f6d5a3
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -77,15 +77,23 @@ module "ecs_app" {
},
{
name = "FILESYSTEM_DISK"
value = "s3"
value = "s3private"
},
{
name = "MEDIA_DISK"
value = "s3"
name = "FILESYSTEM_DISK_PUBLIC"
value = "s3public"
},
{
name = "FILAMENT_FILESYSTEM_DRIVER"
value = "s3"
name = "AWS_BUCKET"
value = module.s3_private.bucket
},
{
name = "AWS_PUBLIC_BUCKET"
value = module.s3_public.bucket
},
{
name = "AWS_PUBLIC_URL"
value = "https://www.${var.domain_name}/media"
},
{
name = "SENTRY_TRACES_SAMPLE_RATE"
Expand Down

0 comments on commit 2f6d5a3

Please sign in to comment.