Skip to content

Commit a0dc9c5

Browse files
committed
add supports markdown
1 parent ca52f1f commit a0dc9c5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/resources/metadata.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Required:
8585
Optional:
8686

8787
- `sensitive` (Boolean) Set to `true` to for items such as API keys whose values should be hidden from view by default. Note that this does not prevent metadata from being retrieved using the API, so it is not suitable for secrets that should not be exposed to workspace users.
88-
- `value` (String) The value of this metadata item.
88+
- `value` (String) The value of this metadata item. Supports basic Markdown, including hyperlinks.
8989

9090
Read-Only:
9191

provider/metadata.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func metadataResource() *schema.Resource {
8888
},
8989
"value": {
9090
Type: schema.TypeString,
91-
Description: "The value of this metadata item.",
91+
Description: "The value of this metadata item. Supports basic Markdown, including hyperlinks.",
9292
ForceNew: true,
9393
Optional: true,
9494
},

0 commit comments

Comments
 (0)