Reputation: 593
Tunning terraform apply is giving the following error.
╷
│ Error: Missing required argument
│
│ The argument "domain" is required, but was not set.
I searched all my project folders including the files in .terraform
folder, but I could not locate that variable.
How do I know which terraform script was giving that error?
Upvotes: 7
Views: 29976
Reputation: 45243
TF_LOG=debug
before normal terraform commands in Linux, such asTF_LOG=debug terraform plan
terraform plan -var domain=xxxx
Upvotes: 16