diff --git a/examples/resources/meraki_organizations_config_templates/resource.tf b/examples/resources/meraki_organizations_config_templates/resource.tf index e7ce421..c614f5b 100644 --- a/examples/resources/meraki_organizations_config_templates/resource.tf +++ b/examples/resources/meraki_organizations_config_templates/resource.tf @@ -1,7 +1,6 @@ resource "meraki_organizations_config_templates" "example" { - copy_from_network_id = "N_24329156" name = "My config template" organization_id = "string" time_zone = "America/Los_Angeles" diff --git a/internal/provider/resource_meraki_organizations_config_templates.go b/internal/provider/resource_meraki_organizations_config_templates.go index b1e8ed3..88160c0 100644 --- a/internal/provider/resource_meraki_organizations_config_templates.go +++ b/internal/provider/resource_meraki_organizations_config_templates.go @@ -53,15 +53,15 @@ func (r *OrganizationsConfigTemplatesResource) Schema(_ context.Context, _ resou stringplanmodifier.UseStateForUnknown(), }, }, - "copy_from_network_id": schema.StringAttribute{ - MarkdownDescription: `The ID of the network or config template to copy configuration from`, - Computed: true, - Optional: true, - PlanModifiers: []planmodifier.String{ - stringplanmodifier.UseStateForUnknown(), - SuppressDiffString(), - }, - }, + // "copy_from_network_id": schema.StringAttribute{ + // MarkdownDescription: `The ID of the network or config template to copy configuration from`, + // Computed: true, + // Optional: true, + // PlanModifiers: []planmodifier.String{ + // stringplanmodifier.UseStateForUnknown(), + // SuppressDiffString(), + // }, + // }, "id": schema.StringAttribute{ MarkdownDescription: `The ID of the network or config template to copy configuration from`, Computed: true,