From 8f386c4630caa6e95e8c5e7d85227a9136e3998f Mon Sep 17 00:00:00 2001 From: Dave Arnold Date: Tue, 14 May 2024 19:43:45 -0400 Subject: [PATCH] working on vpc access to codecommit --- main.tf | 9 --------- 1 file changed, 9 deletions(-) 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"