Skip to content

Commit

Permalink
fix: Merge branch 'master' into otelcol_ecs_ec2_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
guyrenny committed Dec 19, 2024
2 parents 9e3571f + 5ff10a0 commit 965c89d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
# Changelog

## v2.3.1
## v2.3.2
#### **ecs-ec2**
### 🧰 Bug fixes 🧰
- Removed `default` key from `json_parser` operator, because the operator doesn't have this key, and the opentelemetry config failed because of it

## v2.3.1
#### **coralogix-aws-shipper**
### 🧰 Bug fixes 🧰
- Fix issue with local variable `api_key_is_arn` being nonsensitive, for terraform version lower than `1.10.0`

## v2.3.0
#### **coralogix-aws-shipper**
### 💡 Enhancements
Expand Down
2 changes: 1 addition & 1 deletion modules/coralogix-aws-shipper/local.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ locals {
group
} : {}

api_key_is_arn = nonsensitive(replace(var.api_key, ":", "") != var.api_key ? true : false)
api_key_is_arn = replace(nonsensitive(var.api_key), ":", "") != nonsensitive(var.api_key) ? true : false

integration_info = var.integration_info == null ? {
integration = {
Expand Down

0 comments on commit 965c89d

Please sign in to comment.