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:
- Ensure you’ve defined resources in your
.tf
files. A provider alone does nothing.
- Run
terraform state list
to check if any resources exist.
- Verify your working directory and
.tf
files are correct.
- Try
terraform apply
if you expect something to be created.