Skip to content

Commit

Permalink
description is optional in corp signal tags (#198)
Browse files Browse the repository at this point in the history
* description is optional in corp signal tags

* switch from Required to Optional

---------

Co-authored-by: Daniel Corbett <[email protected]>
  • Loading branch information
cduelo and daniel-corbett authored Apr 17, 2024
1 parent 6c63787 commit c2d19c3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion docs/resources/corp_signal_tag.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,12 @@ resource "sigsci_corp_signal_tag" "test" {

### Required

- `description` (String) Optional signal tag description
- `short_name` (String) The display name of the signal tag

### Optional

- `description` (String) Optional signal tag description

### Read-Only

- `configurable` (Boolean) configurable
Expand Down
2 changes: 1 addition & 1 deletion provider/resource_corp_signal_tag.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ func resourceCorpSignalTag() *schema.Resource {
"description": {
Type: schema.TypeString,
Description: "Optional signal tag description",
Required: true,
Optional: true,
},
"configurable": {
Type: schema.TypeBool,
Expand Down

0 comments on commit c2d19c3

Please sign in to comment.