Skip to content

Commit

Permalink
Fix terraform typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuraag Agrawal committed Apr 23, 2021
1 parent a56ba57 commit 315948c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion java/sample-apps/aws-sdk/deploy/agent/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ module "hello-lambda-function" {
timeout = 120
publish = true

layers = collapse([
layers = compact([
var.collector_layer_arn,
var.sdk_layer_arn
])
Expand Down
2 changes: 1 addition & 1 deletion java/sample-apps/aws-sdk/deploy/wrapper/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module "hello-lambda-function" {
memory_size = 384
timeout = 20

layers = collapse([
layers = compact([
var.collector_layer_arn,
var.sdk_layer_arn
])
Expand Down
2 changes: 1 addition & 1 deletion java/sample-apps/okhttp/deploy/wrapper/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module "hello-lambda-function" {
memory_size = 384
timeout = 20

layers = collapse([
layers = compact([
var.collector_layer_arn,
var.sdk_layer_arn
])
Expand Down
2 changes: 1 addition & 1 deletion python/sample-apps/deploy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module "hello-lambda-function" {
memory_size = 384
timeout = 20

layers = collapse([
layers = compact([
var.collector_layer_arn,
var.sdk_layer_arn
])
Expand Down

0 comments on commit 315948c

Please sign in to comment.