Skip to content

Commit b153edd

Browse files
feat: updated the dependencies defined in the DA (#509)
1 parent bb4e76b commit b153edd

File tree

5 files changed

+51
-318
lines changed

5 files changed

+51
-318
lines changed

.secrets.baseline

Lines changed: 1 addition & 1 deletion
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": "2025-05-12T16:40:05Z",
6+
"generated_at": "2025-07-25T11:36:11Z",
77
"plugins_used": [
88
{
99
"name": "AWSKeyDetector"

ibm_catalog.json

Lines changed: 6 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@
321321
{
322322
"key": "enable_platform_metrics",
323323
"type": "string",
324-
"default_value": "true",
324+
"default_value": "false",
325325
"description": "When set to `true`, the IBM Cloud Monitoring instance will be configured to collect platform metrics from the provided region. You can configure 1 instance only of the IBM Cloud Monitoring service per region to collect platform metrics in that location. Check with the account or service administrator if another monitoring instance has already been configured. You may not have permissions to see all monitoring instances in the region. [Learn more](https://cloud.ibm.com/docs/monitoring?topic=monitoring-platform_metrics_enabling).",
326326
"required": true,
327327
"virtual": true,
@@ -336,21 +336,6 @@
336336
}
337337
]
338338
},
339-
{
340-
"key": "logs_routing_tenant_regions",
341-
"type": "list(string)",
342-
"default_value": "[]",
343-
"description": "To manage platform logs that are generated by IBM Cloud services in a region of IBM Cloud, you must create a tenant in each region that you operate. Pass a list of regions to create a tenant in. [Learn more](https://cloud.ibm.com/docs/logs-router?topic=logs-router-about-platform-logs).",
344-
"required": true,
345-
"virtual": true,
346-
"custom_config": {
347-
"grouping": "deployment",
348-
"original_grouping": "deployment",
349-
"config_constraints": {
350-
"type": "string"
351-
}
352-
}
353-
},
354339
{
355340
"key": "existing_resource_group_name",
356341
"display_name": "resource_group",
@@ -642,12 +627,12 @@
642627
"version": "v3.0.7"
643628
},
644629
{
645-
"name": "deploy-arch-ibm-observability",
646-
"description": "Enable to provision and configure IBM Cloud Logs, Cloud Monitoring, Metrics routing and Activity Tracker event routing for analysing logs and metrics generated by the Event Notifications instance.",
630+
"name": "deploy-arch-ibm-cloud-monitoring",
631+
"description": "Provision and configure IBM Cloud Monitoring for metrics generated by the Event Notifications instance.",
647632
"flavors": [
648-
"instances"
633+
"fully-configurable"
649634
],
650-
"id": "a3137d28-79e0-479d-8a24-758ebd5a0eab-global",
635+
"id": "73debdbf-894f-4c14-81c7-5ece3a70b67d-global",
651636
"catalog_id": "7a4d68b4-cf8b-40cd-a3d1-f49aff526eb3",
652637
"input_mapping": [
653638
{
@@ -659,11 +644,6 @@
659644
"version_input": "prefix",
660645
"reference_version": true
661646
},
662-
{
663-
"dependency_input": "existing_kms_instance_crn",
664-
"version_input": "existing_kms_instance_crn",
665-
"reference_version": true
666-
},
667647
{
668648
"dependency_input": "region",
669649
"version_input": "region",
@@ -673,16 +653,11 @@
673653
"dependency_input": "enable_platform_metrics",
674654
"version_input": "enable_platform_metrics",
675655
"reference_version": true
676-
},
677-
{
678-
"dependency_input": "logs_routing_tenant_regions",
679-
"version_input": "logs_routing_tenant_regions",
680-
"reference_version": true
681656
}
682657
],
683658
"optional": true,
684659
"on_by_default": true,
685-
"version": "v3.0.3"
660+
"version": "v1.3.0"
686661
},
687662
{
688663
"name": "deploy-arch-ibm-kms",

tests/go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,17 @@ go 1.24.0
55
toolchain go1.24.5
66

77
require (
8-
github.com/IBM/go-sdk-core/v5 v5.21.0
98
github.com/gruntwork-io/terratest v0.50.0
109
github.com/stretchr/testify v1.10.0
11-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.2
10+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.5
1211
)
1312

1413
require (
1514
dario.cat/mergo v1.0.0 // indirect
1615
github.com/IBM-Cloud/bluemix-go v0.0.0-20240719075425-078fcb3a55be // indirect
1716
github.com/IBM-Cloud/power-go-client v1.12.0 // indirect
1817
github.com/IBM/cloud-databases-go-sdk v0.8.0 // indirect
18+
github.com/IBM/go-sdk-core/v5 v5.21.0 // indirect
1919
github.com/IBM/platform-services-go-sdk v0.85.1 // indirect
2020
github.com/IBM/project-go-sdk v0.3.6 // indirect
2121
github.com/IBM/schematics-go-sdk v0.4.0 // indirect

tests/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,8 +295,8 @@ github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO
295295
github.com/stretchr/testify v1.8.2/go.mod h1:w2LPCIKwWwSfY2zedu0+kehJoqGctiVI29o6fzry7u4=
296296
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
297297
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
298-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.2 h1:XtP5FBYG6wQyRGQyj0EN8Pt/hbgpcUrltD3p5uKVcZ4=
299-
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.2/go.mod h1:2d7vW9ehuOaVZl38OO/aXPPO42EijYfgMe29HPJbI+I=
298+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.5 h1:RxWdD+20e5Yb9K8W6iIjgDG1KDMPLnXHw4SlPhtHdf8=
299+
github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper v1.58.5/go.mod h1:2d7vW9ehuOaVZl38OO/aXPPO42EijYfgMe29HPJbI+I=
300300
github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
301301
github.com/tmccombs/hcl2json v0.6.4 h1:/FWnzS9JCuyZ4MNwrG4vMrFrzRgsWEOVi+1AyYUVLGw=
302302
github.com/tmccombs/hcl2json v0.6.4/go.mod h1:+ppKlIW3H5nsAsZddXPy2iMyvld3SHxyjswOZhavRDk=

0 commit comments

Comments
 (0)