Skip to content

Commit

Permalink
create dummy step func
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-heery committed Oct 21, 2024
1 parent 2d1c252 commit 018e78d
Showing 1 changed file with 14 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ module "send_database_to_ap" {

module "get_zipped_file" {
source = "./modules/step_function"
name = "get_zipped_file"
name = "get_express_zipped_file"
iam_policies = tomap({ "trigger_unzip_lambda" = aws_iam_policy.trigger_unzip_lambda })
variable_dictionary = tomap(
{
Expand All @@ -47,3 +47,16 @@ module "get_zipped_file" {
)
type = "EXPRESS"
}

# delete in a later PR
module "get_zipped_file_non_express" {
source = "./modules/step_function"
name = "get_zipped_file"
iam_policies = tomap({ "trigger_unzip_lambda" = aws_iam_policy.trigger_unzip_lambda })
variable_dictionary = tomap(
{
"unzip_file_name" = module.unzip_single_file.lambda_function_name,
"pre_signed_url_lambda_name" = module.unzipped_presigned_url.lambda_function_name
}
)
}

0 comments on commit 018e78d

Please sign in to comment.