Skip to content

Commit dcfc52b

Browse files
committed
fix: add missing terraform output
1 parent ec9d34a commit dcfc52b

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
setup(
1818
name="cumulus_lambda_functions",
19-
version="1.4.6",
19+
version="1.4.7",
2020
packages=find_packages(),
2121
install_requires=install_requires,
2222
tests_require=['mock', 'nose', 'sphinx', 'sphinx_rtd_theme', 'coverage'],

tf-module/unity-cumulus/outputs.tf

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
output "snpp_lvl0_generate_cmr_arn" {
2+
value = aws_lambda_function.snpp_lvl0_generate_cmr.arn
3+
}
4+
5+
output "cumulus_granules_dapa_arn" {
6+
value = aws_lambda_function.cumulus_granules_dapa.arn
7+
}
8+
9+
output "cumulus_collections_dapa_arn" {
10+
value = aws_lambda_function.cumulus_collections_dapa.arn
11+
}

0 commit comments

Comments
 (0)