Skip to content

Commit

Permalink
fixed mapx s3 upload resource
Browse files Browse the repository at this point in the history
  • Loading branch information
nickchadwick-noaa committed Oct 1, 2024
1 parent 5e293a6 commit 3163867
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/LAMBDA/viz_functions/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -928,7 +928,7 @@ resource "aws_s3_object" "viz_publish_mapx_files" {
for_each = fileset("${path.module}/viz_publish_service/services", "**/*.mapx")
bucket = var.deployment_bucket
key = "viz_mapx/${reverse(split("/",each.key))[0]}"
source = file("${path.module}/viz_publish_service/services/${each.key}")
source = "${path.module}/viz_publish_service/services/${each.key}"
source_hash = filemd5("${path.module}/viz_publish_service/services/${each.key}")
}

Expand Down

1 comment on commit 3163867

@EdisonOrellana-NOAA
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks! This resolves #782

Please sign in to comment.