Skip to content

Commit a317cd6

Browse files
committed
fix: terraform unsupported argument
1 parent e5bc21f commit a317cd6

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
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.5.8",
19+
version="1.5.9",
2020
packages=find_packages(),
2121
install_requires=install_requires,
2222
tests_require=['mock', 'nose', 'sphinx', 'sphinx_rtd_theme', 'coverage'],

tf-module/unity-cumulus/main.tf

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ resource "aws_lambda_function" "snpp_lvl0_generate_cmr" {
4545
runtime = "python3.7"
4646
timeout = 300
4747
environment = {
48-
LOG_LEVEL = var.log_level
48+
variables = {
49+
LOG_LEVEL = var.log_level
50+
}
4951
}
5052

5153
vpc_config {
@@ -63,7 +65,9 @@ resource "aws_lambda_function" "snpp_lvl1_generate_cmr" {
6365
runtime = "python3.7"
6466
timeout = 300
6567
environment = {
66-
LOG_LEVEL = var.log_level
68+
variables = {
69+
LOG_LEVEL = var.log_level
70+
}
6771
}
6872

6973
vpc_config {

0 commit comments

Comments
 (0)