New to terraform , terraform not working

I am new to terraform and I have created provider tf file using visual studio code, when I run terraform plan it says

No changes. Your infrastructure matches the configuration.

Terraform has compared your real infrastructure against your configuration and found no differences, so no changes are
needed.

How do I fix this, thanks in advance

1 Like

This message means Terraform sees no changes between your configuration and the current infrastructure. If you expected changes:

  1. Ensure you’ve defined resources in your .tf files. A provider alone does nothing.
  2. Run terraform state list to check if any resources exist.
  3. Verify your working directory and .tf files are correct.
  4. Try terraform apply if you expect something to be created.