terraform-client/src/main/java/com/microsoft/terraform/TerraformOptions.java [4:35]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	private String armSubscriptionId, armClientId, armClientSecret, armTenantId;

	public String getArmSubscriptionId() {
		return this.armSubscriptionId;
	}

	public void setArmSubscriptionId(String armSubscriptionId) {
		this.armSubscriptionId = armSubscriptionId;
	}

	public String getArmClientId() {
		return this.armClientId;
	}

	public void setArmClientId(String armClientId) {
		this.armClientId = armClientId;
	}

	public String getArmClientSecret() {
		return this.armClientSecret;
	}

	public void setArmClientSecret(String armClientSecret) {
		this.armClientSecret = armClientSecret;
	}

	public String getArmTenantId() {
		return this.armTenantId;
	}

	public void setArmTenantId(String armTenantId) {
		this.armTenantId = armTenantId;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



terraform-spring-boot-autoconfigure/src/main/java/com/microsoft/terraform/spring/autoconfigure/TerraformProperties.java [7:38]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private String armSubscriptionId, armClientId, armClientSecret, armTenantId;

	public String getArmSubscriptionId() {
		return this.armSubscriptionId;
	}

	public void setArmSubscriptionId(String armSubscriptionId) {
		this.armSubscriptionId = armSubscriptionId;
	}

	public String getArmClientId() {
		return this.armClientId;
	}

	public void setArmClientId(String armClientId) {
		this.armClientId = armClientId;
	}

	public String getArmClientSecret() {
		return this.armClientSecret;
	}

	public void setArmClientSecret(String armClientSecret) {
		this.armClientSecret = armClientSecret;
	}

	public String getArmTenantId() {
		return this.armTenantId;
	}

	public void setArmTenantId(String armTenantId) {
		this.armTenantId = armTenantId;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



