Step 1 : Deliver the Infra
The following sample will launch all the modules to show the reader how they are called. My advice is that the reader pick up the module he wants and calls it how it’s shown in the root “main.tf” file.
With your Terraform template created, the first step is to initialize Terraform. This step ensures that Terraform has all the prerequisites to build your template in Azure.
terraform init -backend-config="variable/infra-backend-jdld.tfvars" -backend-config="../secret/backend-jdld.json" -reconfigure
The terraform plan command is used to create an execution plan. This step compares the requested resources to the state information saved by Terraform and then gives as an output the planned execution. Resources are not created in Azure.
terraform plan -var-file="variable/infra-main-jdld.tfvars" -var-file="../secret/main-jdld.tfvars"
If all is ok with the proposal you can now apply the configuration.
terraform apply -var-file="variable/infra-main-jdld.tfvars" -var-file="../secret/main-jdld.tfvars"
To destroy the associated resources.
terraform destroy -var-file="variable/infra-main-jdld.tfvars" -var-file="../secret/main-jdld.tfvars"