From cfc5f65de3865dc8fdfff00db8906c8d669be0d9 Mon Sep 17 00:00:00 2001 From: Dana Fallon <8871189+danafallon@users.noreply.github.com> Date: Mon, 22 Jul 2024 17:50:57 -0700 Subject: [PATCH] Forgot --- docs/data-sources/example.md | 24 ------------------------ internal/provider/provider.go | 1 - 2 files changed, 25 deletions(-) delete mode 100644 docs/data-sources/example.md diff --git a/docs/data-sources/example.md b/docs/data-sources/example.md deleted file mode 100644 index ec1fd54..0000000 --- a/docs/data-sources/example.md +++ /dev/null @@ -1,24 +0,0 @@ ---- -# generated by https://github.com/hashicorp/terraform-plugin-docs -page_title: "artie_example Data Source - artie" -subcategory: "" -description: |- - Example data source ---- - -# artie_example (Data Source) - -Example data source - - - - -## Schema - -### Optional - -- `configurable_attribute` (String) Example configurable attribute - -### Read-Only - -- `id` (String) Example identifier diff --git a/internal/provider/provider.go b/internal/provider/provider.go index 8abcc78..1081470 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -95,7 +95,6 @@ func (p *ArtieProvider) Resources(ctx context.Context) []func() resource.Resourc func (p *ArtieProvider) DataSources(ctx context.Context) []func() datasource.DataSource { return []func() datasource.DataSource{ - NewExampleDataSource, NewDeploymentsDataSource, } }