Skip to content

Commit

Permalink
remove copy_from_network_id parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
fmunozmiranda committed Apr 29, 2024
1 parent e855c35 commit 829bb99
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 829bb99

Please sign in to comment.