Skip to content

Commit

Permalink
infra: fix backend build
Browse files Browse the repository at this point in the history
  • Loading branch information
andreiio committed Dec 4, 2023
1 parent 06c10d7 commit a03ee7b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions terraform/app-runner.tf
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ resource "aws_apprunner_service" "backend" {
REDIS_HOST = aws_elasticache_cluster.redis.cache_nodes.0.address
REDIS_PORT = aws_elasticache_cluster.redis.port

EXPO_PUSH_NOTIFICATIONS_ACCESS_TOKEN = var.expo_push_notifications_access_token

THROTTLE_LIMIT = "600"
THROTTLE_TTL = "60"
CACHE_TTL = "600"
Expand Down
5 changes: 5 additions & 0 deletions terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -42,3 +42,8 @@ variable "bastion_public_key" {
description = "Public SSH key used to connect to the bastion"
type = string
}

variable "expo_push_notifications_access_token" {
description = "Expo push notifications access token"
type = string
}

0 comments on commit a03ee7b

Please sign in to comment.