Skip to content

Commit

Permalink
H-3776: Enable HaRPC in AWS (#5857)
Browse files Browse the repository at this point in the history
  • Loading branch information
TimDiekmann authored Dec 11, 2024
1 parent cb79928 commit e41519d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion infra/terraform/hash/hash_application/graph.tf
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,6 @@ locals {
},
{
name = local.graph_rpc_container_port_name
appProtocol = "http2"
containerPort = local.graph_rpc_container_port
protocol = "tcp"
}
Expand Down
4 changes: 2 additions & 2 deletions infra/terraform/hash/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ module "application" {
{ name = "HASH_GRAPH_PG_HOST", secret = false, value = module.postgres.pg_host },
{ name = "HASH_GRAPH_PG_PORT", secret = false, value = module.postgres.pg_port },
{ name = "HASH_GRAPH_PG_DATABASE", secret = false, value = "graph" },
# { name = "HASH_GRAPH_RPC_ENABLED", secret = false, value = "true" },
{ name = "HASH_GRAPH_RPC_ENABLED", secret = false, value = "true" },
{
name = "HASH_SPICEDB_GRPC_PRESHARED_KEY", secret = true,
value = sensitive(data.vault_kv_secret_v2.secrets.data["spicedb_grpc_preshared_key"])
Expand Down Expand Up @@ -358,7 +358,7 @@ module "application" {
{ name = "HASH_REDIS_PORT", secret = false, value = module.redis.node.port },
{ name = "HASH_REDIS_ENCRYPTED_TRANSIT", secret = false, value = "true" },
{ name = "HASH_INTEGRATION_QUEUE_NAME", secret = false, value = "integration" },
# { name = "HASH_RPC_ENABLED", secret = false, value = "true" },
{ name = "HASH_RPC_ENABLED", secret = false, value = "true" },
{
name = "HASH_VAULT_HOST", secret = true,
value = sensitive(data.vault_kv_secret_v2.secrets.data["hash_vault_host"])
Expand Down

0 comments on commit e41519d

Please sign in to comment.