Skip to content

Commit

Permalink
minor tf cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
bartekpacia committed Oct 26, 2024
1 parent 5a7625e commit 03e2555
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions infra/env.tf
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
locals {
env_vars = [
{
// This is a bindable variable that will be replaced with the actual URL.
// See also:
// This is a bindable variable that will be replaced with the actual URL. See:
// https://docs.digitalocean.com/products/app-platform/how-to/use-environment-variables
key = "SERVER_URL",
value = format("$%s", "{APP_URL}"),
Expand All @@ -18,14 +17,6 @@ locals {
value = "https://bee-ci.pacia.tech/dashboard",
scope = "RUN_TIME"
},
/*
// This is overridden by port configuration in main.tf
{
key = "PORT"
value = "8080"
scope = "RUN_TIME"
},
*/
{
key = "GITHUB_APP_ID"
value = var.github_app_id
Expand Down Expand Up @@ -115,6 +106,7 @@ locals {
key = "REDIS_PASSWORD"
value = digitalocean_database_cluster.redis.password
scope = "RUN_TIME"
type = "SECRET"
},
{
key = "REDIS_USE_TLS",
Expand Down

0 comments on commit 03e2555

Please sign in to comment.