Skip to content

Commit

Permalink
add entry to changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
guyrenny committed Sep 3, 2024
1 parent ffdd6d5 commit ec48b75
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 19 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Changelog

## v1.0.106
#### **msk-data-stream**
### 💡 Enhancements
- Update coralogix role from `arn:aws:iam::<account-id>:role/msk-access-<region>` to `arn:aws:iam::<account-id>:role/coralogix-archive-<region>`
- allow the module to run in AP3 region

#### **coralogix-aws-shipper**
### 💡 Enhancements
- Allow the module to be deployed in AP3

#### **S3-archive**
### 💡 Enhancements
- Allow the module to be deployed in ap-southeast-3 region


## v1.0.105
#### **firehose-metrics**
### 💡 Enhancements
Expand Down
4 changes: 2 additions & 2 deletions examples/coralogix-aws-shipper/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ variable "coralogix_region" {
description = "The Coralogix location region, possible options are [EU1, EU2, AP1, AP2, US1, US2]"
type = string
validation {
condition = contains(["EU1", "EU2", "AP1", "AP2", "US1", "US2", "Custom"], var.coralogix_region)
error_message = "The coralogix region must be one of these values: [EU1, EU2, AP1, AP2, US1, US2, Custom]."
condition = contains(["EU1", "EU2", "AP1", "AP2", "AP3", "US1", "US2", "Custom"], var.coralogix_region)
error_message = "The coralogix region must be one of these values: [EU1, EU2, AP1, AP2, AP3, US1, US2, Custom]."
}
}

Expand Down
4 changes: 4 additions & 0 deletions examples/msk-data-stream/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ output "security_group_id" {
output "cluster_arn" {
value = aws_msk_cluster.coralogix-msk-cluster.arn
}

output "msk_public_brokesrs" {
value = data.aws_msk_cluster.msk_public_brokers.bootstrap_brokers_public_sasl_iam
}
17 changes: 2 additions & 15 deletions examples/msk-data-stream/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ variable "aws_region" {
type = string
description = "The AWS region that you want to create the MSK in, Must be the same as the AWS region where your coralogix account is set"
validation {
condition = contains(["eu-west-1", "eu-north-1", "ap-southeast-1", "ap-south-1", "us-east-2", "us-west-2", "custom"], var.aws_region)
error_message = "The aws region must be one of these values: [eu-west-1, eu-north-1, ap-southeast-1, ap-south-1, us-east-2, us-west-2, custom]."
condition = contains(["eu-west-1", "eu-north-1", "ap-southeast-1", "ap-southeast-3", "ap-south-1", "us-east-2", "us-west-2", "custom"], var.aws_region)
error_message = "The aws region must be one of these values: [eu-west-1, eu-north-1, ap-southeast-1, ap-southeast-3, ap-south-1, us-east-2, us-west-2, custom]."
}
}

Expand Down Expand Up @@ -43,16 +43,3 @@ variable "custom_coralogix_arn" {
default = null

}

variable "coraloigx_roles_arn_mapping" {
type = map
default = {
"eu-west-1" = "arn:aws:iam::625240141681:role/msk-access-eu1"
"eu-north-1" = "arn:aws:iam::625240141681:role/msk-access-eu2"
"ap-southeast-1" = "arn:aws:iam::625240141681:role/msk-access-ap2"
"ap-south-1" = "arn:aws:iam::625240141681:role/msk-access-ap1"
"us-east-2" = "arn:aws:iam::625240141681:role/msk-access-us1"
"us-west-2" = "arn:aws:iam::739076534691:role/msk-access-us2"
"custom" = ""
}
}
4 changes: 2 additions & 2 deletions examples/s3-archive/varibales.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ variable "aws_region" {
description = "The AWS region that you want to create the S3 bucket, Must be the same as the AWS region where your coralogix account is set"
default = ""
validation {
condition = contains(["eu-west-1", "eu-north-1", "ap-southeast-1", "ap-south-1", "us-east-2", "us-west-2", ""], var.aws_region)
error_message = "The aws region must be one of these values: [eu-west-1, eu-north-1, ap-southeast-1, ap-south-1, us-east-2, us-west-2]."
condition = contains(["eu-west-1", "eu-north-1", "ap-southeast-1", "ap-southeast-3", "ap-south-1", "us-east-2", "us-west-2", ""], var.aws_region)
error_message = "The aws region must be one of these values: [eu-west-1, eu-north-1, ap-southeast-1, ap-southeast-3, ap-south-1, us-east-2, us-west-2]."
}
}

Expand Down

0 comments on commit ec48b75

Please sign in to comment.