Skip to content

Commit

Permalink
GH-860: Update docs for action secrets (#876)
Browse files Browse the repository at this point in the history
Improve docs for action secrets
  • Loading branch information
sergiught authored Nov 9, 2023
1 parent c9968e0 commit 9ea6ac3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/action.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ resource "auth0_action" "my_action" {
- `dependencies` (Block Set) List of third party npm modules, and their versions, that this action depends on. (see [below for nested schema](#nestedblock--dependencies))
- `deploy` (Boolean) Deploying an action will create a new immutable version of the action. If the action is currently bound to a trigger, then the system will begin executing the newly deployed version of the action immediately.
- `runtime` (String) The Node runtime. Defaults to `node18`. Possible values are: `node16` (not recommended), or `node18` (recommended).
- `secrets` (Block List) List of secrets that are included in an action or a version of an action. (see [below for nested schema](#nestedblock--secrets))
- `secrets` (Block List) List of secrets that are included in an action or a version of an action. Partial management of secrets is not supported. (see [below for nested schema](#nestedblock--secrets))

### Read-Only

Expand Down
2 changes: 1 addition & 1 deletion internal/auth0/action/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func NewResource() *schema.Resource {
"secrets": {
Type: schema.TypeList,
Optional: true,
Description: "List of secrets that are included in an action or a version of an action.",
Description: "List of secrets that are included in an action or a version of an action. Partial management of secrets is not supported.",
Elem: &schema.Resource{
Schema: map[string]*schema.Schema{
"name": {
Expand Down

0 comments on commit 9ea6ac3

Please sign in to comment.