Terraform indicates Security groups change

after a terraform apply, Terraform announces a change in the Security Groups ressources while no changes are made in the creation of these ressources

below the console…

Terraform will perform the following actions:

module.cms.aws_security_group.cms_ecs will be updated in-place

~ resource “aws_security_group” “cms_ecs” {
~ egress = [
+ {
+ cidr_blocks =
+ description = “Allow NFS”
+ from_port = 2049
+ ipv6_cidr_blocks =
+ prefix_list_ids =
+ protocol = “nfs”
+ security_groups =
+ self = false
+ to_port = 2049
},
# (3 unchanged elements hidden)
]
id = “sg-097c2b579c499ccc9”
~ ingress = [
+ {
+ cidr_blocks =
+ description = “Allow NFS”
+ from_port = 2049
+ ipv6_cidr_blocks =
+ prefix_list_ids =
+ protocol = “nfs”
+ security_groups =
+ self = false
+ to_port = 2049
},
# (2 unchanged elements hidden)
]
name = “mca-dev-cms-ecs-tasks-sg”
tags = {}
# (6 unchanged attributes hidden)
}

module.cms.aws_security_group.cms_efs will be updated in-place

~ resource “aws_security_group” “cms_efs” {
id = “sg-044a446a7eb766360”
~ ingress = [
+ {
+ cidr_blocks =
+ description = “”
+ from_port = 2049
+ ipv6_cidr_blocks =
+ prefix_list_ids =
+ protocol = “nfs”
+ security_groups =
+ self = false
+ to_port = 2049
},
# (1 unchanged element hidden)
]
name = “mca-dev-cms-efs-sg”
~ tags = {
- “Name” = “mca-dev-cms-efs-sg” → null
}
~ tags_all = {
- “Name” = “mca-dev-cms-efs-sg”
} → (known after apply)
# (6 unchanged attributes hidden)
}

Plan: 0 to add, 2 to change, 0 to destroy.

Please help.

Regards
JA