Skip to content

Commit

Permalink
fix: turn off pretty printing
Browse files Browse the repository at this point in the history
  • Loading branch information
stuft2 committed Aug 16, 2022
1 parent f7976ca commit b3b1600
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions log-ingester.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ resource "aws_lambda_function" "humio_cloudwatch_log_ingester" {
HUMIO_HOST = var.humio_host
HUMIO_INGEST_TOKEN = var.humio_ingest_token
LOG_LEVEL = var.log_level
NODE_ENV = "production"
}
}
vpc_config {
Expand Down
1 change: 1 addition & 0 deletions metric-ingester.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ resource "aws_lambda_function" "humio_cloudwatch_metric_ingester" {
LOG_LEVEL = var.log_level
CONFIG = var.metric_conf
RATE_EXPRESSION = var.metric_rate_expression
NODE_ENV = "production"
}
}
vpc_config {
Expand Down
1 change: 1 addition & 0 deletions metric-statistics-ingester.tf
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ resource "aws_lambda_function" "humio_cloudwatch_metric_statistics_ingester" {
LOG_LEVEL = var.log_level
CONFIG = var.metric_statistics_conf
RATE_EXPRESSION = var.metric_statistics_rate_expression
NODE_ENV = "production"
}
}
vpc_config {
Expand Down

0 comments on commit b3b1600

Please sign in to comment.