Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Allow force destroy and random string in bucket name [CDS-1505] #178

Merged
merged 3 commits into from
Oct 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,19 @@
# Changelog

## v2.1.1
#### **S3-archive**
### 🧰 Bug fixes 🧰
- Add `logs_bucket_force_destroy` and `metrics_bucket_force_destroy` variables to allow force destroy the bucekts.

## v2.1.0
#### **firehose-metrics**
### 💡 Enhancements
- Added an option to include metrics from source accounts linked to the monitoring account in the Firehose CloudWatch metric stream.
- Introduced the `include_linked_accounts_metrics` variable to control the inclusion of linked account metrics for Firehose.
- Updated example configurations to demonstrate usage of the `include_linked_accounts_metrics` variable in Firehose metric streams.

## v2.0.1
#### **ecs-ec2**
### 🧰 Bug fixes 🧰
- Fixed ecs-ec2 module, adjusted cdot image command to `--config env:OTEL_CONFIG`
- Removed latest flag from ecs-ec2 module example.
Expand All @@ -15,7 +22,6 @@
### 💡 Enhancements
- Added pprof extension to default ecs-ec2 otel configurations.


## v2.0.0
### 🛑 Breaking changes 🛑
- Remove deprecated modules: cloudwatch-logs, S3 and kinesis
Expand Down
4 changes: 0 additions & 4 deletions examples/s3-archive/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
output "bucket_name_same" {
value = local.is_same_bucket_name ? "Logs and Metrics bucket name should not be the same" : ""
}

output "wrong_region" {
value = local.is_valid_region ? "" : "You tried to configure the bucket in a region that is not supported, or you are not in the region that you specified. Allow regions: eu-west-1, eu-north-1, ap-southeast-1, ap-south-1, us-east-2, us-west-2"
}
Expand Down
40 changes: 13 additions & 27 deletions examples/s3-archive/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,16 @@ variable "custom_coralogix_arn" {
default = ""
}

variable "coralogix_arn_mapping" {
type = map(string)
default = {
"eu-west-1" = "625240141681"
"eu-north-1" = "625240141681"
"ap-southeast-1" = "625240141681"
"ap-south-1" = "625240141681"
"us-east-2" = "625240141681"
"us-west-2" = "739076534691"
"" = "625240141681"
}
}

variable "logs_bucket_name" {
type = string
description = "The name of the S3 bucket to create for the logs archive (Leave empty if not needed)"
default = ""
default = null
}

variable "metrics_bucket_name" {
type = string
description = "The name of the S3 bucket to create for the metrics archive (Leave empty if not needed)"
default = ""
default = null
}

variable "logs_kms_arn" {
Expand All @@ -57,15 +44,14 @@ variable "metrics_kms_arn" {
default = ""
}

variable "aws_role_region" {
type = map
default = {
"eu-west-1"="eu1"
"eu-north-1"="eu2"
"ap-southeast-1"="ap1"
"ap-south-1"="ap2"
"us-east-2"="us1"
"us-west-2"="us2"
}
}

variable "logs_bucket_force_destroy" {
type = bool
description = "force the metrics bucket to destroyed, even if there is data in it"
default = false
}

variable "metrics_bucket_force_destroy" {
type = bool
description = "force the metrics bucket to destroyed, even if there is data in it"
default = false
}
4 changes: 3 additions & 1 deletion modules/provisioning/s3-archive/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ The module can run only on the following regions eu-west-1,eu-north-1,ap-southea
| <a name="provider_aws"></a> [aws](#provider\_aws) | >= 4.15.1 |

| Variable name | Description | Type | Default | Required |
|------|-------------|------|------|:--------:|
|---------------|-------------|------|---------|:--------:|
| aws_region | The AWS region that you want to create the S3 bucket, Must be the same as the AWS region where your [coralogix account](https://coralogix.com/docs/coralogix-domain/) is set. Allowd values: eu-west-1, eu-north-1, ap-southeast-1,ap-southeast-1, ap-south-1, us-east-2, us-west-2 | `string` | n/a | :heavy_check_mark: |
| logs_bucket_name | The name of the S3 bucket to create for the logs archive (Leave empty if not needed), Note: bucket name must follow [AWS naming rules](https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html) | `string` | n/a | |
| metrics_bucket_name | The name of the S3 bucket to create for the metrics archive (Leave empty if not needed), Note: bucket name must follow [AWS naming rules](https://docs.aws.amazon.com/AmazonS3/latest/userguide/bucketnamingrules.html) | `string` | n/a | |
| logs_bucket_force_destroy | enable force destroy to the logs S3 bucekt, to not allow delete if there is files in the bucket | `bool` | false | |
| metrics_bucket_force_destroy | enable force destroy to the metrics S3 bucekt, to not allow delete if there is files in the bucket | `bool` | false | |
| logs_kms_arn | The arn of your kms for the logs bucket , Note: make sure that the kms is in the same region as your bucket | `string` | n/a | |
| metrics_kms_arn | The arn of your kms for the metrics bucket , Note: make sure that the kms is in the same region as your bucket | `string` | n/a | |
12 changes: 4 additions & 8 deletions modules/provisioning/s3-archive/main.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
is_logs_bucket_name_empty = var.logs_bucket_name != ""
is_metrics_bucket_name_empty = var.metrics_bucket_name != ""
is_logs_bucket_name_empty = var.logs_bucket_name != null
is_metrics_bucket_name_empty = var.metrics_bucket_name != null
is_same_bucket_name = var.logs_bucket_name == var.metrics_bucket_name
is_valid_region = data.aws_region.current.name == var.aws_region
coralogix_role_region = lookup(var.aws_role_region, var.aws_region)
Expand All @@ -18,17 +18,13 @@ data "aws_region" "current" {}
resource "aws_s3_bucket" "logs_bucket_name" {
count = local.logs_validations ? 1 : 0
bucket = var.logs_bucket_name
lifecycle {
prevent_destroy = true
}
force_destroy = var.logs_bucket_force_destroy
}

resource "aws_s3_bucket" "metrics_bucket_name" {
count = local.metrics_validations ? 1 : 0
bucket = var.metrics_bucket_name
lifecycle {
prevent_destroy = true
}
force_destroy = var.metrics_bucket_force_destroy
}

resource "aws_s3_bucket_policy" "logs_bucket_policy" {
Expand Down
4 changes: 0 additions & 4 deletions modules/provisioning/s3-archive/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
output "bucket_name_same" {
value = local.is_same_bucket_name ? "Logs and Metrics bucket name should not be the same" : ""
}

output "wrong_region" {
value = local.is_valid_region ? "" : "You tried to configure the bucket in a region that is not supported, or you are not in the region that you specified. Allow regions: eu-west-1, eu-north-1, ap-southeast-1, ap-south-1, us-east-2, us-west-2"
}
Expand Down
16 changes: 14 additions & 2 deletions modules/provisioning/s3-archive/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ variable "coralogix_arn_mapping" {
variable "logs_bucket_name" {
type = string
description = "The name of the S3 bucket to create for the logs archive (Leave empty if not needed)"
default = ""
default = null
}

variable "metrics_bucket_name" {
type = string
description = "The name of the S3 bucket to create for the metrics archive (Leave empty if not needed)"
default = ""
default = null
}

variable "logs_kms_arn" {
Expand All @@ -58,6 +58,18 @@ variable "metrics_kms_arn" {
default = ""
}

variable "logs_bucket_force_destroy" {
type = bool
description = "force the metrics bucket to destroyed, even if there is data in it"
default = false
}

variable "metrics_bucket_force_destroy" {
type = bool
description = "force the metrics bucket to destroyed, even if there is data in it"
default = false
}

variable "aws_role_region" {
type = map
default = {
Expand Down
Loading