Skip to content

Commit

Permalink
Mention that only one schedule is currently supported
Browse files Browse the repository at this point in the history
  • Loading branch information
mitchnielsen committed Nov 21, 2024
1 parent 12e47ae commit a5eb780
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/resources/deployment_schedule.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
page_title: "prefect_deployment_schedule Resource - prefect"
subcategory: ""
description: |-
The resource deployment_schedule represents a schedule for a deployment.
The resource deployment_schedule represents a schedule for a deployment. Note that only one schedule is supported per deployment. Support for multiple schedules is planned.
---

# prefect_deployment_schedule (Resource)

The resource `deployment_schedule` represents a schedule for a deployment.
The resource `deployment_schedule` represents a schedule for a deployment. Note that only one schedule is supported per deployment. Support for multiple schedules is planned.

## Example Usage

Expand Down
5 changes: 3 additions & 2 deletions internal/provider/resources/deployment_schedule.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,9 @@ func (r *DeploymentScheduleResource) Configure(_ context.Context, req resource.C

func (r *DeploymentScheduleResource) Schema(_ context.Context, _ resource.SchemaRequest, resp *resource.SchemaResponse) {
resp.Schema = schema.Schema{
Description: "The resource `deployment_schedule` represents a schedule for a deployment.",
Version: 0,
Description: "The resource `deployment_schedule` represents a schedule for a deployment. " +
"Note that only one schedule is supported per deployment. Support for multiple schedules is planned.",
Version: 0,
Attributes: map[string]schema.Attribute{
"id": schema.StringAttribute{
Computed: true,
Expand Down

0 comments on commit a5eb780

Please sign in to comment.