Skip to content

Commit 02ad54e

Browse files
committed
fix: Pin VPC endpoints module for AppRunner TF
1 parent 0d49781 commit 02ad54e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

terraform/lib/apprunner/vpc.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
module "vpc_endpoints" {
2-
source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
2+
source = "terraform-aws-modules/vpc/aws//modules/vpc-endpoints"
3+
version = "5.21.0"
34

45
vpc_id = var.vpc_id
56
security_group_ids = [aws_security_group.vpc_endpoint.id]
@@ -38,4 +39,4 @@ resource "aws_security_group" "vpc_endpoint" {
3839
}
3940

4041
tags = var.tags
41-
}
42+
}

0 commit comments

Comments
 (0)