How to set aws_network_interface.interface_type = "efs"?

I am currently in the process of creating a Terraform script based on the existing AWS infrastructure. One of the components in the infrastructure is an aws_network_interface with the interface_type="efs". However, the terraform expecting value for this parameter with one of [efa, branch, trunk], whereas in AWS, it is “efs”.

expected interface_type to be one of [efa branch trunk], got efs
│ 
│   with aws_network_interface.eni-***********,
│   on main.tf line 159, in resource "aws_network_interface" "eni-************":
│  159:   interface_type         = "efs"
│