Cloudwatch log group is not deleted while apply terraform destroy

Hi,

I have created cloudwatch log group using terraform script. But the cloudwatch log group is not deleted while execute terraform destroy. But in the output screen showing it is deleted. So please help to find the cause.

#cloudwatch log group creation
resource “aws_cloudwatch_log_group” “cw_log_group” {
name = “{var.project_name}-{var.env_name}-vpc-flow-logs”
retention_in_days = 30
}