Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
… into zip_r
  • Loading branch information
arnol377 committed Aug 15, 2024
2 parents 013df95 + 24ff60f commit 44acff0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions image-pipeline.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
)
Expand Down Expand Up @@ -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
}
)
Expand All @@ -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
}
)
Expand Down Expand Up @@ -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"
}
)
Expand Down

0 comments on commit 44acff0

Please sign in to comment.