diff --git a/main.tf b/main.tf index d522f9b..f20a903 100644 --- a/main.tf +++ b/main.tf @@ -28,15 +28,6 @@ resource "aws_codecommit_repository" "ansible" { data "aws_region" "current" {} -resource "aws_vpc_endpoint" "codecommit" { - for_each = toset([ - "codecommit", - "git-codecommit" - ]) - vpc_id = local.vpc_id - service_name = "com.amazonaws.${data.aws_region.current.name}.${each.value}" - vpc_endpoint_type = "Interface" -} module "main" { source = "HappyPathway/image-pipeline/aws"