Please suggest the missing part for task: Terraform Level 1 Task

What can be the issue in the below config file ? I can see the VPC gets created but when i Check it says the VPC is not created.

resource “aws_vpc” “devops-vpc” {
cidr_block = “0.0.0.0/16”
}

Issue is with the IP range in the cidr_block. Change it’s value to something like 10.0.0.0/16 instead.