Skip to content

Commit

Permalink
FIX archive variable assignments
Browse files Browse the repository at this point in the history
  • Loading branch information
ramesh-maddegoda committed Aug 15, 2024
1 parent 2a8af65 commit a021382
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -245,8 +245,8 @@ resource "aws_lambda_function" "pds_nucleus_product_completion_checker_function"
PDS_NUCLEUS_CONFIG_BUCKET_NAME = var.pds_nucleus_config_bucket_name
REPLACE_PREFIX_WITH = var.pds_nucleus_harvest_replace_prefix_with_list[count.index]
PDS_MWAA_ENV_NAME = var.airflow_env_name
PDS_HOT_ARCHIVE_S3_BUCKET_NAME = "${lower(replace(var.pds_node_names[count.index], "_", "-"))}-${var.pds_nucleus_cold_archive_name_postfix}"
PDS_COLD_ARCHIVE_S3_BUCKET_NAME = "${lower(replace(var.pds_node_names[count.index], "_", "-"))}-${var.pds_nucleus_hot_archive_name_postfix}"
PDS_HOT_ARCHIVE_S3_BUCKET_NAME = "${lower(replace(var.pds_node_names[count.index], "_", "-"))}-${var.pds_nucleus_hot_archive_name_postfix}"
PDS_COLD_ARCHIVE_S3_BUCKET_NAME = "${lower(replace(var.pds_node_names[count.index], "_", "-"))}-${var.pds_nucleus_cold_archive_name_postfix}"
PDS_STAGING_S3_BUCKET_NAME = aws_s3_bucket.pds_nucleus_s3_staging_bucket[count.index].id
}
}
Expand Down

0 comments on commit a021382

Please sign in to comment.