xgeek116

xgeek116

Preparing the production environment for deployment in GCP with Cloud SQL database

Hello,

Elixir version = 1.13.1
Phoenix version = 1.6.6

I created a REST API in Elixir/Phoenix and everything works fine with the PostgreSQL database (hosted in Google Cloud SQL), but I have some issues when configuring the deployment env, I was following this tutorial : https://shyr.io/blog/deploy-phoenix-google-app-engine

But in my project structure I didn’t find the file config/prod.secret.exs, so I created one and compiled and now I’m having error about missing : DATABASE_URL variable

In the config/dev.exs file I was configuring the database like this :

config :test_api, TestApi.Repo,
  socket_dir: "/cloudsql/CONNEXTION_NAME_CLOUD_SQL",
  username: "testUser",
  password: "testPassword",
  database: "testDB",
  pool_size: 10

But in config/runtime.exs the format required is :
For example: ecto://USER:PASS@HOST/DATABASE

How can I inject the socket dir (cloudsql) inside ?

Best regards

First Post!

xgeek116

xgeek116

Hello,

I tried to set the DATABASE_URL env variable like :
DATABASE_URL: “ecto://user:password@/database?host=/cloudsql/DATABASE_CONNECTION_NAME”

But I get the following error :

    ** (EXIT) an exception was raised:
        ** (Ecto.InvalidURLError) invalid url ecto://user:password@/database?host=/cloudsql/DATABASE_CONNECTION_NAME, host is not present. The parsed URL is: %URI{authority: "user:password@", fragment: nil, host: nil, path: "/database", port: nil, query: "host=/cloudsql/DATABASE_CONNECTION_NAME", scheme: "ecto", userinfo: "user:password"}

Most Liked

mstibbard

mstibbard

I trust you’ve solved this issue by now (or given up!!).

For anyone else that finds this, I’ve written up the complete steps to deploy to Google Cloud Run + Cloud SQL here: https://www.stibbard.io/elixir-phoenix-deploy-google-cloud-run-and-cloud-sql

The answer to your specific question:

  • What was previously contained in config/prod.secret.exs was moved into config/runtime.exs
  • The default Ecto connection in a fresh mix phx.new project_name is in the form of ecto://USER:PASS@HOST/DATABASE however Cloud SQL expects a socket connection, not a domain (e.g., HOST) so you need to update your config/runtime.exs. Refer to Ecto.Adapters.Postgres — Ecto SQL v3.14.0 – the one you want is :socket. An example updated config could be like below, which includes moving the values into environment variables/secrets.
# do this for each secret. e.g., socket, db, user, pass
database_password =
  System.get_env("DATABASE_PASSWORD") ||
    raise """
    environment variable DATABASE_PASSWORD is missing.
    """

config :insight, Insight.Repo,
  socket: database_socket,
  database: database_name,
  username: database_user,
  password: database_password,
  pool_size: String.to_integer(System.get_env("POOL_SIZE") || "10"),
  socket_options: maybe_ipv6
  • In your deployment you will need to populate those environment variables. In my writeup I did this in Google Secrets Manager
  • You will also need to sort IAM permissions to allow your server to talk to Cloud SQL, and this will vary depending on what service you deployed your app to AND what Service Account you used. In my writeup I created a new Service Account, and we deployed to Google Cloud Run

Last Post!

mstibbard

mstibbard

I can’t update my post above but there’s an even easier way – using postgres environment variables (e.g., PGHOST, PGUSER, etc) which is what :postgrex defaults to when your code does not specify database connection details. I’ve updated my write-up accordingly: https://www.stibbard.io/elixir-phoenix-deploy-google-cloud-run-and-cloud-sql

Where Next?

Popular in Questions Top

New
vonH
When I run the Plug and I recompile I wind up having to use Ctrl C to quit iex and start again. Witht the help of rlwrap I can use the cu...
New
hariharasudhan94
lets say i have a sample like a = 20; b = 10; if (a > b) do {:ok, "a"} end if (a < b) do {:ok, b} end if (a == b) do {:ok, "equa...
New
lanycrost
Hi everyone! I need implement if…else if…else condition from my elixir code, and anymore of this control flow structures not work proper...
New
jerry
Good day to you all. I have been struggling to get a query involving like and ilike to work. Can anyone assist me on this, please? pro...
New
SoCreat
i’m a new one to elixir which editor can i use vs code? or atom? Thanks! :smiley:
New
jason.o
In the code below, if the create action is not set to accept “extra_key” as an input, it errors out with a message shown above. Is there ...
New

Other popular topics Top

greenz1
I have a phoenix application from which a user can download multiple(5-6) files of size 1MB. I couldn’t find anything related to sending ...
New
sen
Hi All, I set a environment variables in dev.exs , like below code. when i start server, how can i set the ${enable} value? thanks. d...
New
bsollish-terakeet
Credo is smart enough to check for (something like) this: assert length(the_list) == 0 with this response: Checking if an enum is empt...
New
saif
Hello everyone, Long time lurker first time poster here. I’ve recently begun working on Elixir full-time again! :raised_hands: It’s been...
New
romenigld
I am trying to run a deploy with docker and I successfully runned with this command: docker build -t romenigld/blog-prod . but when I t...
New
sergio
Kind of like when jquery came out, it was super necessary. Existing drag and drop libraries have a bunch of baggage to support old browse...
New

We're in Beta

About us Mission Statement