Remove resources from Terraform state (without destroying)
<resource_address>state/# Remove Resources from Terraform State Remove resources from Terraform state without destroying them. Arguments: $ARGUMENTS ## When to Use State Remove - Stop managing a resource with Terraform (but keep it running) - Clean up orphaned state entries - Transfer resource ownership to another state - Remove resources before destroying to keep them - Fix duplicate state entries ## IMPORTANT WARNINGS 1. **Resource continues to exist in AWS** - Only removed from state 2. **Terraform will no longer track it** - Future plans won't include it 3. **Cannot be undone easily** - Would need to re-i...