diff --git a/image-pipeline.tf b/image-pipeline.tf index c901aa1..f0464b2 100644 --- a/image-pipeline.tf +++ b/image-pipeline.tf @@ -29,7 +29,7 @@ module "image_pipeline_repos" { content = templatefile( "${path.module}/workflows/s3_upload.yaml.tpl", { - repo_name = each.value + repo_name = each.value, bucket_name = "image-pipeline-assets" } ) @@ -83,7 +83,7 @@ module "aws_image_pipeline" { content = templatefile( "${path.module}/workflows/terraform-plan.yaml.tpl", { - repo_name = "aws-image-pipeline" + repo_name = "aws-image-pipeline", directory = null } ) @@ -93,7 +93,7 @@ module "aws_image_pipeline" { content = templatefile( "${path.module}/workflows/terraform-apply.yaml.tpl", { - repo_name = "aws-image-pipeline" + repo_name = "aws-image-pipeline", directory = null } ) @@ -129,7 +129,7 @@ module "terraform_aws_image_pipeline" { content = templatefile( "${path.module}/workflows/terraform-plan.yaml.tpl", { - repo_name = "aws-image-pipeline" + repo_name = "aws-image-pipeline", directory = "./examples" } )