Skip to content

Commit

Permalink
Refactor image pipeline module names and update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Arnold committed Aug 14, 2024
1 parent 454f315 commit 99e6d2d
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion image-pipeline.tf
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ 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 @@ -104,6 +105,15 @@ module "aws_image_pipeline" {
repo_name = "aws-image-pipeline"
}
)
},
{
path = ".github/workflows/terraform-apply.yaml"
content = templatefile(
"${path.module}/workflows/terraform-apply.yaml.tpl",
{
repo_name = "aws-image-pipeline"
}
)
}
]
}

0 comments on commit 99e6d2d

Please sign in to comment.