diff --git a/docs/data-sources/organisation.md b/docs/data-sources/organisation.md index a234426..19ee7e0 100644 --- a/docs/data-sources/organisation.md +++ b/docs/data-sources/organisation.md @@ -3,12 +3,12 @@ page_title: "flagsmith_organisation Data Source - terraform-provider-flagsmith" subcategory: "" description: |- - Flagsmith Organisation/ Remote config + Flagsmith Organisation --- # flagsmith_organisation (Data Source) -Flagsmith Organisation/ Remote config +Flagsmith Organisation diff --git a/docs/resources/environment.md b/docs/resources/environment.md index c064ff1..258e443 100644 --- a/docs/resources/environment.md +++ b/docs/resources/environment.md @@ -3,12 +3,12 @@ page_title: "flagsmith_environment Resource - terraform-provider-flagsmith" subcategory: "" description: |- - Flagsmith Environment/ Remote config + Flagsmith Environment --- # flagsmith_environment (Resource) -Flagsmith Environment/ Remote config +Flagsmith Environment diff --git a/docs/resources/project.md b/docs/resources/project.md index c288a03..8294d6b 100644 --- a/docs/resources/project.md +++ b/docs/resources/project.md @@ -3,12 +3,12 @@ page_title: "flagsmith_project Resource - terraform-provider-flagsmith" subcategory: "" description: |- - Flagsmith Project/ Remote config + Flagsmith Project --- # flagsmith_project (Resource) -Flagsmith Project/ Remote config +Flagsmith Project diff --git a/flagsmith/data_source_organisation.go b/flagsmith/data_source_organisation.go index 3c996e8..831b3c0 100644 --- a/flagsmith/data_source_organisation.go +++ b/flagsmith/data_source_organisation.go @@ -43,7 +43,7 @@ func (o *organisationDataResource) Configure(ctx context.Context, req datasource func (o *organisationDataResource) Schema(ctx context.Context, req datasource.SchemaRequest, resp *datasource.SchemaResponse) { resp.Schema = schema.Schema{ // This description is used by the documentation generator and the language server. - MarkdownDescription: "Flagsmith Organisation/ Remote config", + MarkdownDescription: "Flagsmith Organisation", Attributes: map[string]schema.Attribute{ "uuid": schema.StringAttribute{ diff --git a/flagsmith/resource_environment.go b/flagsmith/resource_environment.go index 933431d..6b7944d 100644 --- a/flagsmith/resource_environment.go +++ b/flagsmith/resource_environment.go @@ -53,7 +53,7 @@ func (r *environmentResource) Configure(ctx context.Context, req resource.Config func (t *environmentResource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) { resp.Schema = schema.Schema{ // This description is used by the documentation generator and the language server. - MarkdownDescription: "Flagsmith Environment/ Remote config", + MarkdownDescription: "Flagsmith Environment", Attributes: map[string]schema.Attribute{ "id": schema.Int64Attribute{ diff --git a/flagsmith/resource_environment_test.go b/flagsmith/resource_environment_test.go index f08402e..eeda264 100644 --- a/flagsmith/resource_environment_test.go +++ b/flagsmith/resource_environment_test.go @@ -6,7 +6,6 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/acctest" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" - //"strings" "testing" "strconv" ) diff --git a/flagsmith/resource_project.go b/flagsmith/resource_project.go index 5febb00..4345c5d 100644 --- a/flagsmith/resource_project.go +++ b/flagsmith/resource_project.go @@ -52,7 +52,7 @@ func (r *projectResource) Configure(ctx context.Context, req resource.ConfigureR func (t *projectResource) Schema(ctx context.Context, req resource.SchemaRequest, resp *resource.SchemaResponse) { resp.Schema = schema.Schema{ // This description is used by the documentation generator and the language server. - MarkdownDescription: "Flagsmith Project/ Remote config", + MarkdownDescription: "Flagsmith Project", Attributes: map[string]schema.Attribute{ "id": schema.Int64Attribute{ diff --git a/flagsmith/resource_project_test.go b/flagsmith/resource_project_test.go index d0b0bfd..7483ba2 100644 --- a/flagsmith/resource_project_test.go +++ b/flagsmith/resource_project_test.go @@ -6,7 +6,6 @@ import ( "github.com/hashicorp/terraform-plugin-sdk/v2/helper/acctest" "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" - //"strings" "testing" "strconv" )