Skip to content

Commit 698b461

Browse files
committed
docs: align casing for specific terms in index file
Aligned casing, such as `Platform`, `Token`, `Provider`, `Environment`, to be lowercase. `REST API` => `API`
1 parent da680d4 commit 698b461

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

templates/index.md.tmpl

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
layout: ""
33
page_title: "Provider: Dynatrace"
44
description: |-
5-
The Dynatrace Terraform Provider provides resources to interact with the Dynatrace REST API.
5+
The Dynatrace Terraform provider provides resources to interact with the Dynatrace API.
66
---
77

88
# Dynatrace Terraform Provider
99

10-
The Dynatrace Terraform Provider is used to interact with the resources supported by the Dynatrace REST API. The provider needs to be configured with the proper credentials before it can be used.
10+
The Dynatrace Terraform provider is used to interact with the resources supported by the Dynatrace API. The provider needs to be configured with the proper credentials before it can be used.
1111

1212
Use the navigation to the left to learn about the available resources and data sources. For additional information, refer to the official Dynatrace documentation on Terraform available [here](https://dt-url.net/3s63qyj).
1313

14-
The Dynatrace Terraform Provider is officially supported by Dynatrace.
14+
The Dynatrace Terraform provider is officially supported by Dynatrace.
1515

1616
## Example
1717

@@ -30,8 +30,8 @@ terraform {
3030
The recommended approach is to configure the provider via environment variables.
3131

3232
Define `DYNATRACE_ENV_URL` for the Dynatrace environment URL.
33-
* SaaS Environments: `https://########.live.dynatrace.com`
34-
* Managed Enviroments: `https://<dynatrace-host>/e/#####################`
33+
* SaaS environments: `https://########.live.dynatrace.com`
34+
* Managed environments: `https://<dynatrace-host>/e/#####################`
3535

3636
To create an API token with full access to all resources, define `DYNATRACE_API_TOKEN` as an [access token](https://docs.dynatrace.com/docs/manage/identity-access-management/access-tokens-and-oauth-clients/access-tokens) with the following permissions.
3737
* **Read settings** (`settings.read`)
@@ -101,9 +101,9 @@ Define `DT_CLIENT_ID`, `DT_CLIENT_SECRET`, `DT_ACCOUNT_ID` based off of the crea
101101

102102
### Authenticating with OAuth Credentials
103103

104-
The Terraform Provider supports using OAuth credentials for authentication with endpoints that allow both API Token and OAuth-based access.
104+
The Terraform provider supports using OAuth credentials for authentication with endpoints that allow both API token and OAuth-based access.
105105

106-
> **Note:** Not all resources currently support OAuth. For example, the `dynatrace_json_dashboard` resource can only be configured using API Tokens.
106+
> **Note:** Not all resources currently support OAuth. For example, the `dynatrace_json_dashboard` resource can only be configured using API tokens.
107107

108108
To enable OAuth-based authentication, set the environment variable:
109109

@@ -113,13 +113,13 @@ DYNATRACE_HTTP_OAUTH_PREFERENCE=true
113113

114114
When this variable is set and OAuth credentials (e.g., `DT_CLIENT_ID` and `DT_CLIENT_SECRET`) are provided, the provider will prioritize using REST endpoints that support OAuth.
115115

116-
If `DYNATRACE_HTTP_OAUTH_PREFERENCE` is not set or is not `true`, the provider will default to using an API Token for authentication.
116+
If `DYNATRACE_HTTP_OAUTH_PREFERENCE` is not set or is not `true`, the provider will default to using an API token for authentication.
117117

118118
---
119119

120-
### Authenticating with Platform Tokens
120+
### Authenticating with platform tokens
121121

122-
You can authenticate using a Platform Token by setting the environment variable:
122+
You can authenticate using a platform token by setting the environment variable:
123123

124124
```
125125
DYNATRACE_PLATFORM_TOKEN=<<PLATFORM_TOKEN>>
@@ -129,8 +129,8 @@ Alternatively, you can use the `platform_token` attribute in the provider config
129129

130130
If `DYNATRACE_PLATFORM_TOKEN` is not defined, the provider will use the configured OAuth credentials (`DT_CLIENT_ID` and `DT_CLIENT_SECRET`) to obtain a Bearer token.
131131

132-
Platform Token authentication follows the same selection rules as OAuth credentials:
133-
When the environment variable `DYNATRACE_HTTP_OAUTH_PREFERENCE` is set to `true`, the provider will favor Platform or OAuth tokens over API Tokens.
132+
Platform token authentication follows the same selection rules as OAuth credentials:
133+
When the environment variable `DYNATRACE_HTTP_OAUTH_PREFERENCE` is set to `true`, the provider will favor platform or OAuth tokens over API tokens.
134134

135135

136136
## Exporting existing configuration from a Dynatrace environment

0 commit comments

Comments
 (0)