Skip to content

Commit 0d269db

Browse files
docs: update managed_by description
1 parent 787fb07 commit 0d269db

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

docs/resources/pipeline.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ resource "marmot_pipeline" "bigquery_analytics" {
4747
- `id` (String) Pipeline ID
4848
- `last_run_at` (String) Timestamp of the most recent run
4949
- `last_run_status` (String) Status of the most recent run
50-
- `managed_by` (String) What manages the pipeline, for example the API or the CLI
50+
- `managed_by` (String) External controller that runs this pipeline, such as the Marmot Kubernetes operator. Empty for Terraform-managed pipelines, which the server runs on their cron.
5151
- `next_run_at` (String) Timestamp of the next scheduled run
5252
- `updated_at` (String) Last update timestamp
5353

internal/provider/pipeline_resource.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,9 @@ func (r *PipelineResource) Schema(ctx context.Context, req resource.SchemaReques
108108
},
109109
},
110110
"managed_by": schema.StringAttribute{
111-
MarkdownDescription: "What manages the pipeline, for example the API or the CLI",
112-
Computed: true,
111+
MarkdownDescription: "External controller that runs this pipeline, such as the Marmot " +
112+
"Kubernetes operator. Empty for Terraform-managed pipelines, which the server runs on their cron.",
113+
Computed: true,
113114
},
114115
"last_run_status": schema.StringAttribute{
115116
MarkdownDescription: "Status of the most recent run",

0 commit comments

Comments
 (0)