diff --git a/docs/resources/library_variable_set.md b/docs/resources/library_variable_set.md index 9bff4bf78..1eac0caca 100644 --- a/docs/resources/library_variable_set.md +++ b/docs/resources/library_variable_set.md @@ -25,10 +25,10 @@ This resource manages library variable sets in Octopus Deploy. - `id` (String) The unique ID for this resource. - `space_id` (String) The space ID associated with this library variable set. - `template` (Block List) (see [below for nested schema](#nestedblock--template)) -- `template_ids` (Map of String) ### Read-Only +- `template_ids` (Map of String) - `variable_set_id` (String) diff --git a/octopusdeploy_framework/schemas/library_variable_set.go b/octopusdeploy_framework/schemas/library_variable_set.go index 391bf862a..055db386c 100644 --- a/octopusdeploy_framework/schemas/library_variable_set.go +++ b/octopusdeploy_framework/schemas/library_variable_set.go @@ -7,7 +7,6 @@ import ( "github.com/hashicorp/terraform-plugin-framework/attr" datasourceSchema "github.com/hashicorp/terraform-plugin-framework/datasource/schema" resourceSchema "github.com/hashicorp/terraform-plugin-framework/resource/schema" - "github.com/hashicorp/terraform-plugin-framework/resource/schema/mapplanmodifier" "github.com/hashicorp/terraform-plugin-framework/resource/schema/planmodifier" "github.com/hashicorp/terraform-plugin-framework/resource/schema/stringplanmodifier" types "github.com/hashicorp/terraform-plugin-framework/types" @@ -96,9 +95,6 @@ func GetLibraryVariableSetResourceSchema() resourceSchema.Schema { "template_ids": resourceSchema.MapAttribute{ ElementType: types.StringType, Computed: true, - PlanModifiers: []planmodifier.Map{ - mapplanmodifier.UseStateForUnknown(), - }, }, "variable_set_id": resourceSchema.StringAttribute{ Computed: true,