Skip to content

Commit

Permalink
fix: terraform unsupported argument
Browse files Browse the repository at this point in the history
  • Loading branch information
ngachung committed Jun 27, 2022
1 parent e5bc21f commit a317cd6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
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.5.8",
version="1.5.9",
packages=find_packages(),
install_requires=install_requires,
tests_require=['mock', 'nose', 'sphinx', 'sphinx_rtd_theme', 'coverage'],
Expand Down
8 changes: 6 additions & 2 deletions tf-module/unity-cumulus/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ resource "aws_lambda_function" "snpp_lvl0_generate_cmr" {
runtime = "python3.7"
timeout = 300
environment = {
LOG_LEVEL = var.log_level
variables = {
LOG_LEVEL = var.log_level
}
}

vpc_config {
Expand All @@ -63,7 +65,9 @@ resource "aws_lambda_function" "snpp_lvl1_generate_cmr" {
runtime = "python3.7"
timeout = 300
environment = {
LOG_LEVEL = var.log_level
variables = {
LOG_LEVEL = var.log_level
}
}

vpc_config {
Expand Down

0 comments on commit a317cd6

Please sign in to comment.