terraform state mv <ORIGINAL_REFERENCE> <NEW_REFERENCE>
terraform state mv \
  aws_security_group.instance \
  aws_security_group.cluster_instance

Alternative to the CLI commands is moved block:

moved {
  from = aws_security_group.instance
  to   = aws_security_group.cluster_instance
}