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: content/en/imt/monitoring-as-code/_index.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,10 +34,10 @@ cd ~/observability-content-contrib/integration-examples/terraform-jumpstart
34
34
35
35
The environment variables needed should already be set from [Installation using Helm](../gdi/#2-installation-using-helm). If not, create the following environment variables to use in the Terraform steps below
@@ -124,7 +124,7 @@ The plan command alone will not actually carry out the proposed changes, and so
124
124
{{% tab title="Execution Plan" %}}
125
125
126
126
```bash
127
-
terraform plan -var="access_token=$ACCESS_TOKEN" -var="realm=$REALM" -var="o11y_prefix=[$(hostname)]"
127
+
terraform plan -var="api_token=$API_TOKEN" -var="realm=$REALM" -var="o11y_prefix=[$(hostname)]"
128
128
```
129
129
130
130
{{% /tab %}}
@@ -145,15 +145,15 @@ If the plan executes successfully, we can go ahead and apply:
145
145
146
146
The `terraform apply` command executes the actions proposed in the Terraform plan above.
147
147
148
-
The most straightforward way to use `terraform apply` is to run it without any arguments at all, in which case it will automatically create a new execution plan (as if you had run terraform plan) and then prompt you to provide the Access Token, Realm (the prefix defaults to `Splunk`) and approve the plan, before taking the indicated actions.
148
+
The most straightforward way to use `terraform apply` is to run it without any arguments at all, in which case it will automatically create a new execution plan (as if you had run terraform plan) and then prompt you to provide the API Token, Realm (the prefix defaults to `Splunk`) and approve the plan, before taking the indicated actions.
149
149
150
150
Due to this being a workshop it is required that the prefix is to be unique so you need to run the `terraform apply` below.
0 commit comments