Skip to content

Commit

Permalink
disable redis TLS until further testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jdbass committed May 17, 2024
1 parent 9c107c7 commit 573862e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tofu/modules/services/backend-service/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -108,19 +108,19 @@ resource "aws_ecs_task_definition" "backend" {
},
{
"name": "REDIS_URL",
"value": var.redis_endpoint
"value": "" #var.redis_endpoint
},
{
"name": "REDIS_PORT",
"value": "6379"
"value": "" #"6379"
},
{
"name": "REDIS_DB",
"value": "0"
"value": "" #"0"
},
{
"name": "REDIS_USE_SSL",
"value": "True"
"value": "" #"True"
}
],
secrets = [
Expand Down

0 comments on commit 573862e

Please sign in to comment.