Skip to content

Commit

Permalink
Switch to using our latest scanned image
Browse files Browse the repository at this point in the history
Our image removes the EXPOSE directive so that Envoy works properly.
Note that the current version was not actually scanned clean; we'll
address that in future.
  • Loading branch information
mogul committed Jul 30, 2024
1 parent 8ecf03f commit 8dcc135
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions supabase/studio.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ locals {
# TODO: Parameterize which image to use, with this as the default
# TODO: Once Supabase publishes an image without CRITICAL and HIGH findings,
# switch to ghcr.io/gsa-tts/cg-supabase/studio:scanned
studio_image = "ghcr.io/supabase/studio"
studio_image_tag = "v1.24.05"
studio_url = "https://${cloudfoundry_route.supabase-studio.endpoint}"
studio_image = "ghcr.io/gsa-tts/cg-supabase/studio"
studio_image_tag = "scanned"
studio_url = "https://${cloudfoundry_route.supabase-studio.endpoint}:61443"
studio_connection_string = "${cloudfoundry_service_key.studio.credentials.uri}?sslmode=require"

}
Expand Down Expand Up @@ -58,7 +58,7 @@ resource "cloudfoundry_app" "supabase-studio" {

PGRST_DB_SCHEMAS : "public,storage,graphql_public"
PGRST_DB_ANON_ROLE : "anon"
PGRST_DB_MAX_ROWS : 20000
PGRST_DB_MAX_ROWS : "20000"

STUDIO_PG_META_URL : local.meta_url

Expand Down

0 comments on commit 8dcc135

Please sign in to comment.