Skip to content

Commit

Permalink
fix: update terraform justtrackio/ecs-gosoline-monitoring/aws to v2.2…
Browse files Browse the repository at this point in the history
….1 (#72)

[![Mend Renovate logo
banner](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
|
[justtrackio/ecs-gosoline-monitoring/aws](https://registry.terraform.io/modules/justtrackio/ecs-gosoline-monitoring/aws)
([source](https://togithub.com/justtrackio/terraform-aws-ecs-gosoline-monitoring))
| module | patch | `2.2.0` -> `2.2.1` |

---

### Release Notes

<details>
<summary>justtrackio/terraform-aws-ecs-gosoline-monitoring
(justtrackio/ecs-gosoline-monitoring/aws)</summary>

###
[`v2.2.1`](https://togithub.com/justtrackio/terraform-aws-ecs-gosoline-monitoring/blob/HEAD/CHANGELOG.md#221-2023-11-21)

[Compare
Source](https://togithub.com/justtrackio/terraform-aws-ecs-gosoline-monitoring/compare/v2.2.0...v2.2.1)

##### Bug Fixes

- adjust provider data resource
([#&#8203;50](https://togithub.com/justtrackio/terraform-aws-ecs-gosoline-monitoring/issues/50))
([16e8c64](https://togithub.com/justtrackio/terraform-aws-ecs-gosoline-monitoring/commit/16e8c64127a19c6fbd12c0ca2d78c87031e6768f))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/justtrackio/terraform-aws-ecs-app).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy41OS44IiwidXBkYXRlZEluVmVyIjoiMzcuNTkuOCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Marco Frömbgen <[email protected]>
  • Loading branch information
renovate[bot] and mfroembgen authored Nov 21, 2023
1 parent 9029276 commit dde1b17
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Terraform module which creates a ecs app
| <a name="requirement_aws"></a> [aws](#requirement\_aws) | >= 4.67 |
| <a name="requirement_elasticsearch"></a> [elasticsearch](#requirement\_elasticsearch) | 2.0.7 |
| <a name="requirement_elasticstack"></a> [elasticstack](#requirement\_elasticstack) | 0.6.2 |
| <a name="requirement_gosoline"></a> [gosoline](#requirement\_gosoline) | 1.2.4 |
| <a name="requirement_gosoline"></a> [gosoline](#requirement\_gosoline) | 1.2.6 |
| <a name="requirement_grafana"></a> [grafana](#requirement\_grafana) | 2.2.0 |
| <a name="requirement_sentry"></a> [sentry](#requirement\_sentry) | 0.11.2 |

Expand All @@ -34,7 +34,7 @@ Terraform module which creates a ecs app
| <a name="module_ecs_service_task_customized_autoscaling"></a> [ecs\_service\_task\_customized\_autoscaling](#module\_ecs\_service\_task\_customized\_autoscaling) | justtrackio/ecs-autoscaling/aws | 1.1.0 |
| <a name="module_ecs_service_task_predefined_autoscaling"></a> [ecs\_service\_task\_predefined\_autoscaling](#module\_ecs\_service\_task\_predefined\_autoscaling) | justtrackio/ecs-autoscaling/aws | 1.1.0 |
| <a name="module_ecs_service_task_schedule"></a> [ecs\_service\_task\_schedule](#module\_ecs\_service\_task\_schedule) | justtrackio/ecs-autoscaling/aws | 1.1.0 |
| <a name="module_monitoring"></a> [monitoring](#module\_monitoring) | justtrackio/ecs-gosoline-monitoring/aws | 2.2.0 |
| <a name="module_monitoring"></a> [monitoring](#module\_monitoring) | justtrackio/ecs-gosoline-monitoring/aws | 2.2.1 |
| <a name="module_sentry"></a> [sentry](#module\_sentry) | justtrackio/project/sentry | 1.3.0 |
| <a name="module_service_task"></a> [service\_task](#module\_service\_task) | justtrackio/ecs-alb-service-task/aws | 1.3.0 |
| <a name="module_ssm_label"></a> [ssm\_label](#module\_ssm\_label) | justtrackio/label/null | 0.26.0 |
Expand Down
2 changes: 1 addition & 1 deletion autoscaling.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
locals {
alb_enabled = length(var.alb_name) > 0
mpr_enabled = lookup(module.this.tags, "Type") == "subscriber" || lookup(module.this.tags, "Type") == "consumer" && var.mpr_enabled == null ? true : var.mpr_enabled
mpr_enabled = var.mpr_enabled == true ? true : (lookup(module.this.tags, "Type") == "subscriber" || lookup(module.this.tags, "Type") == "consumer") && var.mpr_enabled == null ? true : false
internal_predefined_metric_type = local.alb_enabled ? "ALBRequestCountPerTarget" : "ECSServiceAverageCPUUtilization"
internal_predefined_target_value = local.alb_enabled ? 1000 : 100
internal_customized_target_value = 500
Expand Down
2 changes: 1 addition & 1 deletion monitoring.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ locals {
module "monitoring" {
count = var.monitoring_enabled ? 1 : 0
source = "justtrackio/ecs-gosoline-monitoring/aws"
version = "2.2.0"
version = "2.2.1"

context = module.this.context

Expand Down
2 changes: 1 addition & 1 deletion versions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ terraform {

gosoline = {
source = "justtrackio/gosoline"
version = "1.2.4"
version = "1.2.6"
}

grafana = {
Expand Down

0 comments on commit dde1b17

Please sign in to comment.