diff --git a/docs/resources/domain_role_assignments.md b/docs/resources/domain_role_assignments.md index 4e12587b..18d97171 100644 --- a/docs/resources/domain_role_assignments.md +++ b/docs/resources/domain_role_assignments.md @@ -59,7 +59,7 @@ resource "fabric_domain_role_assignments" "example" { Required: - `id` (String) The Principal ID. Changing this forces a new resource to be created. -- `type` (String) ThePrincipal type. Accepted values: `Group`, `User`. Changing this forces a new resource to be created. +- `type` (String) The Principal type. Accepted values: `Group`, `User`. Changing this forces a new resource to be created. diff --git a/internal/services/domain/resource_domain_role_assignments.go b/internal/services/domain/resource_domain_role_assignments.go index 66a68cd0..cce63b88 100644 --- a/internal/services/domain/resource_domain_role_assignments.go +++ b/internal/services/domain/resource_domain_role_assignments.go @@ -92,7 +92,7 @@ func (r *resourceDomainRoleAssignments) Schema(ctx context.Context, _ resource.S CustomType: customtypes.UUIDType{}, }, "type": schema.StringAttribute{ - MarkdownDescription: "ThePrincipal type. Accepted values: " + utils.ConvertStringSlicesToString(possiblePrincipalTypeValues, true, true) + ". " + common.DocsRequiresReplace, + MarkdownDescription: "The Principal type. Accepted values: " + utils.ConvertStringSlicesToString(possiblePrincipalTypeValues, true, true) + ". " + common.DocsRequiresReplace, Required: true, Validators: []validator.String{ stringvalidator.OneOf(utils.ConvertEnumsToStringSlices(possiblePrincipalTypeValues, false)...),