Skip to content

Commit

Permalink
fix issue when removing rftemplate_id from site resource
Browse files Browse the repository at this point in the history
  • Loading branch information
tmunzer committed Dec 18, 2024
1 parent c498c96 commit 13f5abf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/resource_site/terraform_to_sdk.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func TerraformToSdk(ctx context.Context, plan *SiteModel) (*models.Site, diag.Di
diags.AddError("Bad value for rftemplate_id", e.Error())
}
} else {
unset["rftemplate_id"] = nil
unset["-rftemplate_id"] = nil
}

if !plan.SecpolicyId.IsNull() && !plan.SecpolicyId.IsUnknown() {
Expand Down

0 comments on commit 13f5abf

Please sign in to comment.