Skip to content

Commit f123096

Browse files
authored
docs: add depreciation message (#612)
1 parent 845a300 commit f123096

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.secrets.baseline

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"files": "go.sum|^.secrets.baseline$",
44
"lines": null
55
},
6-
"generated_at": "2024-10-18T12:26:02Z",
6+
"generated_at": "2025-07-21T13:54:00Z",
77
"plugins_used": [
88
{
99
"name": "AWSKeyDetector"
@@ -82,7 +82,7 @@
8282
"hashed_secret": "3f0155e75563ab3adc0505000a86da5baa207d1f",
8383
"is_secret": false,
8484
"is_verified": false,
85-
"line_number": 59,
85+
"line_number": 77,
8686
"type": "Secret Keyword",
8787
"verified_result": null
8888
}

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Terraform IBM Observability agents module
22

3+
---
4+
5+
:warning: **Deprecated**: This module has been deprecated in favour of the following 2 modules:
6+
- [terraform-ibm-monitoring-agent](https://github.com/terraform-ibm-modules/terraform-ibm-monitoring-agent)
7+
- [terraform-ibm-logs-agent](https://github.com/terraform-ibm-modules/terraform-ibm-logs-agent)
8+
9+
10+
Migration:
11+
- It is possible to migrate the logs agent using a terraform moved block like so which would mean the upgrade would be an update-in-place instead of a destroy / re-create:
12+
```
13+
moved {
14+
from = module.observability_agents[0].module.logs_agent[0].helm_release.logs_agent
15+
to = module.logs_agent[0].helm_release.logs_agent
16+
}
17+
```
18+
- However since the helm chart being used in the new [terraform-ibm-monitoring-agent](https://github.com/terraform-ibm-modules/terraform-ibm-monitoring-agent) module is completly different to the helm chart used in this module, there is no way to do an update-in-place. Upgrading to this version will destroy the old helm release and create a new one so please plan accordingly before upgrading.
19+
---
20+
321
[![Graduated (Supported)](https://img.shields.io/badge/Status-Graduated%20(Supported)-brightgreen)](https://terraform-ibm-modules.github.io/documentation/#/badge-status)
422
[![pre-commit](https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white)](https://github.com/pre-commit/pre-commit)
523
[![latest release](https://img.shields.io/github/v/release/terraform-ibm-modules/terraform-ibm-observability-agents?logo=GitHub&sort=semver)](https://github.com/terraform-ibm-modules/terraform-ibm-observability-agents/releases/latest)

0 commit comments

Comments
 (0)