diff --git a/internal/provider/provider.go b/internal/provider/provider.go index 0faa557..c3750ef 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -33,7 +33,6 @@ type CtrlplaneProvider struct { // CtrlplaneProviderModel describes the provider data model. type CtrlplaneProviderModel struct { BaseURL types.String `tfsdk:"base_url"` - Workspace types.String `tfsdk:"workspace"` Token types.String `tfsdk:"token"` } @@ -53,10 +52,6 @@ func (p *CtrlplaneProvider) Schema(ctx context.Context, req provider.SchemaReque MarkdownDescription: "The token to use for authentication", Optional: true, }, - "workspace": schema.StringAttribute{ - MarkdownDescription: "The workspace ID to use for Ctrlplane resources", - Optional: true, - }, }, } }