Skip to content

Commit 2a6ce37

Browse files
fixed version to 1.13.0 in documentation index template
1 parent 6df2d1b commit 2a6ce37

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
layout: ""
3+
page_title: "dynatrace_api_token Resource - terraform-provider-dynatrace"
4+
description: |-
5+
The resource `dynatrace_api_token` allows you to create API Tokens on demand
6+
---
7+
8+
# dynatrace_application_anomalies (Resource)
9+
10+
This is a minimal example for creating an API Token on demand within a terraform module.
11+
12+
```
13+
resource "dynatrace_api_token" "tok1" {
14+
name = "tok1"
15+
scopes = ["metrics.read"]
16+
}
17+
```
18+
19+
The actual token value can later on be referred with `dynatrace_api_token.tok1.token`.
20+
21+
IMPORTANT: Be aware that the usage of `dynatrace_api_token` within your Terraform modules results in your terraform state containing confidential data (the API token). The property `token` is flagged as `sensitive`, but is stored in clear text within the terraform state. Hashicorp plans to encrypt such properties in the future.
22+
23+
{{ .SchemaMarkdown | trimspace }}

templates/index.md.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Use the links to the left to learn about the available resources.
1818
terraform {
1919
required_providers {
2020
dynatrace = {
21-
version = "1.12.0"
21+
version = "1.13.0"
2222
source = "dynatrace-oss/dynatrace"
2323
}
2424
}

0 commit comments

Comments
 (0)