How to create a CloudRun with terraform export a secret as env var?

Viewed 11
1 Answers

Just add this section inside of containers:

        env {
          name = "VAR"
          value_from {
            secret_key_ref {
              name = "VAR"
              key  = "1"
            }
          }
        }
Related