diff --git a/docs/resources/template.md b/docs/resources/template.md index 07117c44..c2bafeb5 100644 --- a/docs/resources/template.md +++ b/docs/resources/template.md @@ -57,7 +57,7 @@ resource "env0_template_project_assignment" "assignment" { - **revision** (String) source code revision (branch / tag) to use - **ssh_keys** (List of Map of String) an array of references to 'data_ssh_key' to use when accessing git over ssh - **terraform_version** (String) Terraform version to use -- **token_id** (String) The token id used for private git repos or for integration with GitLab +- **token_id** (String) The token id used for private git repos or for integration with GitLab, you can get this value by using a data resource of an existing Gitlab template or contact our support team - **type** (String) 'terraform' or 'terragrunt' ## Import diff --git a/env0/resource_template.go b/env0/resource_template.go index 64d49882..bcadaf34 100644 --- a/env0/resource_template.go +++ b/env0/resource_template.go @@ -101,7 +101,7 @@ func resourceTemplate() *schema.Resource { }, "token_id": { Type: schema.TypeString, - Description: "The token id used for private git repos or for integration with GitLab", + Description: "The token id used for private git repos or for integration with GitLab, you can get this value by using a data resource of an existing Gitlab template or contact our support team", Optional: true, }, "gitlab_project_id": {