Skip to content

Commit

Permalink
Improve auth0_action docs
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiught committed Aug 19, 2022
1 parent e057d93 commit aeeb852
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/resources/action.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ resource "auth0_action" "my_action" {
Required:

- `id` (String) The trigger ID.
- `version` (String) The trigger version.
- `version` (String) The trigger version. This also controls the `runtime` version. Make sure the `version` supports the desired node `runtime`.


<a id="nestedblock--dependencies"></a>
Expand Down
7 changes: 4 additions & 3 deletions internal/provider/resource_auth0_action.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,10 @@ func newAction() *schema.Resource {
Description: "The trigger ID.",
},
"version": {
Type: schema.TypeString,
Required: true,
Description: "The trigger version.",
Type: schema.TypeString,
Required: true,
Description: "The trigger version. This also controls the `runtime` version. " +
"Make sure the `version` supports the desired node `runtime`.",
},
},
},
Expand Down

0 comments on commit aeeb852

Please sign in to comment.