tf or .tf.json to specify the format that is in use. Otherwise, the files are ignored. Multiple file formats can be present in the same directory ...
terragrunt.hcl ├── frontend-app │ ├── main.tf │ └── terragrunt.hcl
In Terraform 0.11, regular *.tf files were loaded in alphabetical order and then override files were applied. When invoking any command that ...
It does not care how many files there are or in what order they sort.
Then when you run terraform apply for Folder 1, it will create your dev
To be able to deploy multiple Terraform modules in a single command, add a terraform.tfvars file to
Here is the main.tf in the root module which is used to query other modules and
If you wanted to keep the .tf files separate, you could run Terraform from
You can, however, target multiple resources in one command:
Terraform – using multiple files for configurations and variables