Skip to content

Commit

Permalink
fix: add missing terraform output
Browse files Browse the repository at this point in the history
  • Loading branch information
wphyojpl committed Jun 15, 2022
1 parent ec9d34a commit dcfc52b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

setup(
name="cumulus_lambda_functions",
version="1.4.6",
version="1.4.7",
packages=find_packages(),
install_requires=install_requires,
tests_require=['mock', 'nose', 'sphinx', 'sphinx_rtd_theme', 'coverage'],
Expand Down
11 changes: 11 additions & 0 deletions tf-module/unity-cumulus/outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
output "snpp_lvl0_generate_cmr_arn" {
value = aws_lambda_function.snpp_lvl0_generate_cmr.arn
}

output "cumulus_granules_dapa_arn" {
value = aws_lambda_function.cumulus_granules_dapa.arn
}

output "cumulus_collections_dapa_arn" {
value = aws_lambda_function.cumulus_collections_dapa.arn
}

0 comments on commit dcfc52b

Please sign in to comment.