You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,7 @@ Migration:
15
15
to = module.logs_agent[0].helm_release.logs_agent
16
16
}
17
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.
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 completely 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.
# As a `Sender`, you can send logs to your IBM Cloud Logs service instance - but not query or tail logs. This role is meant to be used by agents and routers sending logs.
29
29
trusted_profile_policies=[{
30
-
roles = ["Sender"]
30
+
roles = ["Sender"]
31
+
unique_identifier ="${var.prefix}-profile-0"
31
32
resources = [{
32
33
service ="logs"
33
34
}]
34
35
}]
35
36
# Set up fine-grained authorization for `logs-agent` running in ROKS cluster in `ibm-observe` namespace.
Copy file name to clipboardExpand all lines: main.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -29,9 +29,9 @@ data "ibm_container_cluster_config" "cluster_config" {
29
29
30
30
locals {
31
31
# LOCALS
32
-
cluster_name=var.is_vpc_cluster? data.ibm_container_vpc_cluster.cluster[0].resource_name: data.ibm_container_cluster.cluster[0].resource_name# Not publically documented in provider. See https://github.com/IBM-Cloud/terraform-provider-ibm/issues/4485
32
+
cluster_name=var.is_vpc_cluster? data.ibm_container_vpc_cluster.cluster[0].resource_name: data.ibm_container_cluster.cluster[0].resource_name# Not publicly documented in provider. See https://github.com/IBM-Cloud/terraform-provider-ibm/issues/4485
}]...) : {} # DO NOT REMOVE "...", it is used to convert list of objects into a single object
37
-
cluster_name=var.is_vpc_cluster? data.ibm_container_vpc_cluster.cluster[0].resource_name: data.ibm_container_cluster.cluster[0].resource_name# Not publically documented in provider. See https://github.com/IBM-Cloud/terraform-provider-ibm/issues/4485
37
+
cluster_name=var.is_vpc_cluster? data.ibm_container_vpc_cluster.cluster[0].resource_name: data.ibm_container_cluster.cluster[0].resource_name# Not publicly documented in provider. See https://github.com/IBM-Cloud/terraform-provider-ibm/issues/4485
0 commit comments