Skip to content

Commit 019fd7a

Browse files
authored
fix: Make source verification JSON sensitive (#66)
* fix: Make source verification JSON sensitive * docs: Generate
1 parent 4b948b8 commit 019fd7a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

docs/resources/source_verification.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ Optional:
5353
- `github` (Attributes) (see [below for nested schema](#nestedatt--verification--github))
5454
- `gitlab` (Attributes) (see [below for nested schema](#nestedatt--verification--gitlab))
5555
- `hmac` (Attributes) (see [below for nested schema](#nestedatt--verification--hmac))
56-
- `json` (String)
56+
- `json` (String, Sensitive)
5757
- `linear` (Attributes) (see [below for nested schema](#nestedatt--verification--linear))
5858
- `mailgun` (Attributes) (see [below for nested schema](#nestedatt--verification--mailgun))
5959
- `nmi` (Attributes) (see [below for nested schema](#nestedatt--verification--nmi))

internal/provider/sourceverification/verification_json.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ import (
1010

1111
func jsonConfigSchema() schema.StringAttribute {
1212
return schema.StringAttribute{
13-
Optional: true,
13+
Optional: true,
14+
Sensitive: true,
1415
}
1516
}
1617

0 commit comments

Comments
 (0)