- The terraform needs plugins to be installed in local folder so, use
terraform init- It automatically installs the required plugins from the Terraform Registry.
- Modify the
main.tf(if necessary) andexamples.tfvarsto suit your Azure configuration and Citrix ADC deployment. - Use
terraform plan -var-file examples.tfvarsto review the plan - Use
terraform apply -var-file examples.tfvarsto apply the configuration.
- Modify the set of resources (if necessary)
- Use
terraform plan -var-file examples.tfvarsandterraform apply -var-file examples.tfvarsto review and update the changes respectively.
- To destroy the configuration use
terraform destroy -var-file examples.tfvars.