Skip to content

Commit 5173630

Browse files
authored
Updated IBM authentication examples to use prod URLs (#381)
1 parent 0db9384 commit 5173630

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

website/docs/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ resource "sysdig_secure_policy" "unexpected_inbound_tcp_connection_traefik" {
8383
provider "sysdig" {
8484
sysdig_monitor_team_id = 1234
8585
sysdig_monitor_team_name = "My team" # or use this as alternative to `sysdig_monitor_team_id`
86-
sysdig_monitor_url = "https://us-south.monitoring.test.cloud.ibm.com"
87-
ibm_monitor_iam_url = "https://iam.test.cloud.ibm.com"
86+
sysdig_monitor_url = "https://us-south.monitoring.cloud.ibm.com"
87+
ibm_monitor_iam_url = "https://iam.cloud.ibm.com"
8888
ibm_monitor_instance_id = "xxxxxx"
8989
ibm_monitor_api_key = "xxxxxx"
9090
}
@@ -96,8 +96,8 @@ provider "sysdig" {
9696
provider "sysdig" {
9797
sysdig_secure_team_id = 1234
9898
sysdig_secure_team_name = "My team" # or use this as alternative to `sysdig_monitor_team_id`
99-
sysdig_secure_url = "https://us-south.monitoring.test.cloud.ibm.com"
100-
ibm_secure_iam_url = "https://iam.test.cloud.ibm.com"
99+
sysdig_secure_url = "https://us-south.monitoring.cloud.ibm.com"
100+
ibm_secure_iam_url = "https://iam.cloud.ibm.com"
101101
ibm_secure_instance_id = "xxxxxx"
102102
ibm_secure_api_key = "xxxxxx"
103103
}
@@ -157,7 +157,7 @@ When Secure resources are to be created, this authentication must be in place.
157157
When IBM Cloud Monitoring resources are to be created, this authentication must be in place.
158158

159159
* `sysdig_monitor_url` - (Required) This is the target IBM Cloud Monitoring API
160-
endpoint. It can also be sourced from the `SYSDIG_MONITOR_URL` environment variable.
160+
endpoint. It can also be sourced from the `SYSDIG_MONITOR_URL` environment variable. [Find your IBM Cloud Monitoring region url](https://cloud.ibm.com/docs/monitoring?topic=monitoring-endpoints#endpoints_monitoring).
161161
<br/>Notice: it should not be ended with a slash.<br/><br/>
162162
* `ibm_monitor_iam_url` - (Required) This is the target IAM endpoint used to issue IBM IAM token by consuming `ibm_monitor_api_key`.
163163
Provider will handle token expiration and refresh it when needed.
@@ -185,7 +185,7 @@ When IBM Cloud Monitoring resources are to be created, this authentication must
185185
When IBM Workload Protection resources are to be created, this authentication must be in place.
186186

187187
* `sysdig_secure_url` - (Required) This is the target IBM Workload Protection API
188-
endpoint. It can also be sourced from the `SYSDIG_SECURE_URL` environment variable.
188+
endpoint. It can also be sourced from the `SYSDIG_SECURE_URL` environment variable. [Find your Workload Protection region url](https://cloud.ibm.com/docs/workload-protection?topic=workload-protection-endpoints#endpoints_monitoring).
189189
<br/>Notice: it should not be ended with a slash.<br/><br/>
190190
* `ibm_secure_iam_url` - (Required) This is the target IAM endpoint used to issue IBM IAM token by consuming `ibm_secure_api_key`.
191191
Provider will handle token expiration and refresh it when needed.

0 commit comments

Comments
 (0)