From 89c7435b50101173cdfbd2b0e18d981a51cc4709 Mon Sep 17 00:00:00 2001 From: Sergiu Ghitea Date: Fri, 19 Aug 2022 17:46:14 +0200 Subject: [PATCH] Improve auth0_action docs --- docs/resources/action.md | 2 +- internal/provider/resource_auth0_action.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/resources/action.md b/docs/resources/action.md index a332df5b8..7679ee44a 100644 --- a/docs/resources/action.md +++ b/docs/resources/action.md @@ -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 regulates which `runtime` versions are supported. diff --git a/internal/provider/resource_auth0_action.go b/internal/provider/resource_auth0_action.go index ea2d66d43..985fba1d1 100644 --- a/internal/provider/resource_auth0_action.go +++ b/internal/provider/resource_auth0_action.go @@ -47,7 +47,7 @@ func newAction() *schema.Resource { "version": { Type: schema.TypeString, Required: true, - Description: "The trigger version.", + Description: "The trigger version. This regulates which `runtime` versions are supported.", }, }, },