- 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.tfvars
to suit your Azure configuration and Citrix ADC deployment. - Use
terraform plan -var-file examples.tfvars
to review the plan - Use
terraform apply -var-file examples.tfvars
to apply the configuration.
- Modify the set of resources (if necessary)
- Use
terraform plan -var-file examples.tfvars
andterraform apply -var-file examples.tfvars
to review and update the changes respectively.
- To destroy the configuration use
terraform destroy -var-file examples.tfvars
.