Skip to content

Commit 3b21dc7

Browse files
authored
Fix auto_assignment attribute documentation (#636)
1 parent a783586 commit 3b21dc7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/resources/project_ownership.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Sentry Project Ownership. See the [Sentry documentation](https://docs.sentry.io/
1717

1818
### Required
1919

20-
- `auto_assignment` (String) The auto-assignment mode. The options are: `none` - No auto-assignment, `all` - Assign all issues, `unhandled` - Assign unhandled issues.
20+
- `auto_assignment` (String) The auto-assignment mode. The options are: `Auto Assign to Issue Owner`, `Auto Assign to Suspect Commits`, and `Turn off Auto-Assignment`.
2121
- `codeowners_auto_sync` (Boolean) Whether to automatically sync codeowners.
2222
- `fallthrough` (Boolean) Whether to fall through to the default ownership rules.
2323
- `organization` (String) The organization of this resource.

internal/provider/resource_project_ownership.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ func (r *ProjectOwnershipResource) Schema(ctx context.Context, req resource.Sche
7171
Required: true,
7272
},
7373
"auto_assignment": schema.StringAttribute{
74-
Description: "The auto-assignment mode. The options are: `none` - No auto-assignment, `all` - Assign all issues, `unhandled` - Assign unhandled issues.",
74+
Description: "The auto-assignment mode. The options are: `Auto Assign to Issue Owner`, `Auto Assign to Suspect Commits`, and `Turn off Auto-Assignment`.",
7575
Required: true,
7676
Validators: []validator.String{
7777
stringvalidator.OneOf(

0 commit comments

Comments
 (0)