Skip to content

Commit 5f16594

Browse files
committed
Update docs
1 parent a6e23f1 commit 5f16594

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

internal/resources/k6/catalog-resource.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,4 +62,4 @@ spec:
6262
subcomponentOf: component:default/terraform-provider-grafana
6363
type: terraform-resource
6464
owner: group:default/k6-cloud-provisioning
65-
lifecycle: production
65+
lifecycle: production

internal/resources/k6/resource_schedule.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import (
1313
"github.com/hashicorp/terraform-plugin-framework/resource"
1414
"github.com/hashicorp/terraform-plugin-framework/resource/schema"
1515
"github.com/hashicorp/terraform-plugin-framework/resource/schema/booldefault"
16+
"github.com/hashicorp/terraform-plugin-framework/resource/schema/int32default"
1617
"github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier"
1718
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier"
1819
"github.com/hashicorp/terraform-plugin-framework/schema/validator"
@@ -126,7 +127,7 @@ func (r *scheduleResource) Schema(_ context.Context, _ resource.SchemaRequest, r
126127
Description: "The interval between each frequency iteration (e.g., 2 = every 2 hours for HOURLY). Defaults to 1.",
127128
Optional: true,
128129
Computed: true,
129-
Default: int32default.StaticInt32(1),
130+
Default: int32default.StaticInt32(1),
130131
},
131132
"count": schema.Int32Attribute{
132133
Description: "How many times the recurrence will repeat.",

provider_schema.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)