From f74f6999d0faef218c37fb27a77c901c91987aae Mon Sep 17 00:00:00 2001 From: Dustin Strobel Date: Fri, 18 Oct 2024 16:21:11 +0200 Subject: [PATCH] docs: add note to resource description local_group_resource --- docs/resources/local_group.md | 3 +-- internal/provider/local/local_group_resource.go | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/docs/resources/local_group.md b/docs/resources/local_group.md index a5db664..caf2cfa 100644 --- a/docs/resources/local_group.md +++ b/docs/resources/local_group.md @@ -9,8 +9,7 @@ description: |- Manage local security groups. -**Note:** The description default is a string with a space. -This is necessary because the powershell function Set-LocalGroup does not allow an empty string. +-> The description default is a string with a space. This is necessary because the powershell function Set-LocalGroup does not allow an empty string. ## Example Usage diff --git a/internal/provider/local/local_group_resource.go b/internal/provider/local/local_group_resource.go index 3136f45..c3bb6cd 100644 --- a/internal/provider/local/local_group_resource.go +++ b/internal/provider/local/local_group_resource.go @@ -32,8 +32,7 @@ func (r *localGroupResource) Schema(ctx context.Context, req resource.SchemaRequ resp.Schema = resource_local_group.LocalGroupResourceSchema(ctx) resp.Schema.Description = `Manage local security groups. -**Note:** The description default is a string with a space. -This is necessary because the powershell function Set-LocalGroup does not allow an empty string. +-> The description default is a string with a space. This is necessary because the powershell function Set-LocalGroup does not allow an empty string. ` }