Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
floreks committed Aug 13, 2024
1 parent 4f1f1fe commit fa3cdfb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/resources/stack_run_trigger.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ description: |-

### Required

- `id` (String) ID of the Infrastructure Stack that should be used stack a new run from the newest SHA in the stack's run history.
- `id` (String) ID of the Infrastructure Stack that should be used to start a new run from the newest SHA in the stack's run history.
4 changes: 2 additions & 2 deletions internal/resource/stack_run_trigger.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ func (in *stackRunTriggerResource) Schema(_ context.Context, _ resource.SchemaRe
response.Schema = schema.Schema{
Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
Description: "ID of the Infrastructure Stack that should be used stack a new run from the newest SHA in the stack's run history.",
MarkdownDescription: "ID of the Infrastructure Stack that should be used stack a new run from the newest SHA in the stack's run history.",
Description: "ID of the Infrastructure Stack that should be used to start a new run from the newest SHA in the stack's run history.",
MarkdownDescription: "ID of the Infrastructure Stack that should be used to start a new run from the newest SHA in the stack's run history.",
Required: true,
Validators: []validator.String{
stringvalidator.LengthAtLeast(1),
Expand Down

0 comments on commit fa3cdfb

Please sign in to comment.