in terraform-spring-boot-autoconfigure/src/main/java/com/microsoft/terraform/spring/autoconfigure/TerraformAutoConfiguration.java [21:28]
public TerraformClient terraformClient() {
TerraformOptions tfOptions = new TerraformOptions();
tfOptions.setArmSubscriptionId(this.tfProperties.getArmSubscriptionId());
tfOptions.setArmClientId(this.tfProperties.getArmClientId());
tfOptions.setArmClientSecret(this.tfProperties.getArmClientSecret());
tfOptions.setArmTenantId(this.tfProperties.getArmTenantId());
return new TerraformClient(tfOptions);
}