Skip to content

Commit

Permalink
fix vpc id
Browse files Browse the repository at this point in the history
  • Loading branch information
carlomazzaferro committed Jun 2, 2023
1 parent 7ba1f94 commit 8a010f5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ops/modules/redis/sgs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ resource "aws_security_group" "allow_from_anywhere" {
count = var.public_redis ? 1 : 0
description = "Allow all inbound traffic"
name = "allow_redis_access"
vpc_id = aws_vpc.main.id
vpc_id = var.vpc_id

ingress {
from_port = 6379
Expand Down

0 comments on commit 8a010f5

Please sign in to comment.