Releases: Azure/Avere
(Preview) Terraform Avere vFXT Provider 2020-08-25 release
Summary
This is the preview release of the Terraform Avere vFXT Provider. To learn more, visit the Avere vFXT provider page.
Feature
- deprecate the following custom settings (#841)
Fix
- analytics api fails if not logged into the Avere UI. Enable before calling to fix the permission issue (#839)
(Preview) Terraform Avere vFXT Provider 2020-08-24 release 0.9.8
Summary
This is the preview release of the Terraform Avere vFXT Provider. To learn more, visit the Avere vFXT provider page.
Fix
- core filer deletion sometimes fails and is resolved with a multi call (#836)
(Preview) Terraform Avere vFXT Provider 2020-08-24
Summary
This is the preview release of the Terraform Avere vFXT Provider. To learn more, visit the Avere vFXT provider page.
Feature
- add core filer export rules (#763). See Export Rules for usage and examples.
- automatically add autoWanOptimize to all corefilers (#829). See auto_wan_optimize for more details.
- speed up core filer quota balancing (#832).
- block deprecated custom settings (#834).
(Preview) Terraform Avere vFXT Provider 2020-08-19
Summary
This is the preview release of the Terraform Avere vFXT Provider. To learn more, visit the Avere vFXT provider page.
Feature
- improve the quota ratio convergence and speed (#818, #821)
- pre-set the number of IP addresses for the Vserver (#793). This introduces new variable
vserver_ip_count
that must be used in combination withvserver_first_ip
. Here is example usage:
vserver_first_ip = "10.0.1.200"
vserver_ip_count = 32
Fix
- workaround averecmd bug that only sets a single IP address of a list of multiple ip addresses on a corefiler by using
dbutil.py
to set the addresses (#792)
(Preview) Terraform Avere vFXT Provider 2020-08-17
Summary
This is the preview release of the Terraform Avere vFXT Provider. To learn more, visit the Avere vFXT provider page.
Feature
- add
ordinal
property to filers to ensure deterministic ordering (#813). For example, add the following to the body of acore_filer
instance:
ordinal = 1
- add
mass_filer_mappings
to the output (#813). For example, add the following line to output to get the mass filer mappings:
output "mass_filer_mappings" {
value = tolist(avere_vfxt.vfxt.mass_filer_mappings)
}
- add
fixed_quota_percent
to filer to help divide up the cache space among core filers (#814). For example, add the following to the body of acore_filer
instance:
fixed_quota_percent = 25
(Preview) Terraform Avere vFXT Provider 2020-08-14 (0.9.4)
Summary
This is the preview release of the Terraform Avere vFXT Provider. To learn more, visit the Avere vFXT provider page.
Feature
- add read only cache policy (#808). To specify add the following for
cache_policy
, for example
cache_policy = "Read Only High Verification Time"
- add node IP address (#794) for output. This is useful for being able to ssh to static ip addresses of the vfxt nodes that won't change on AOS restart. Here is example usage:
output "primary_cluster_ips" {
value = tolist(avere_vfxt.vfxt.primary_cluster_ips)
}
- add license id output, useful for support, here is example usage
output "licensing_id" {
value = avere_vfxt.vfxt.licensing_id
}
Fix
(Preview) Terraform Avere vFXT Provider 2020-08-14
Summary
This is the preview release of the Terraform Avere vFXT Provider. To learn more, visit the Avere vFXT provider page.
Feature
- add read only cache policy (#808). To specify add the following for
cache_policy
, for example
cache_policy = "Read Only High Verification Time"
- add node IP address (#794) for output. This is useful for being able to ssh to static ip addresses of the vfxt nodes that won't change on AOS restart. Here is example usage:
output "primary_cluster_ips" {
value = tolist(avere_vfxt.vfxt.primary_cluster_ips)
}
- add license id output, useful for support, here is example usage
output "licensing_id" {
value = avere_vfxt.vfxt.licensing_id
}
Fix
(Preview) Terraform Avere vFXT Provider 2020-06-25
Summary
This is the preview release of the Terraform Avere vFXT Provider. To learn more, visit the Avere vFXT provider page.
Feature
- add capability to deploy vfxt with an ssh key
- add ability to use an alternate ssh port
(Preview) Terraform Avere vFXT Provider 2020-06-10
Summary
This is the preview release of the Terraform Avere vFXT Provider. To learn more, visit the Avere vFXT provider page.
Feature
- add unsupported sku to use for test clusters to save money. See https://github.com/Azure/Avere/tree/master/src/terraform/examples/vfxt/test-cluster to see an example.
(Preview) Terraform Avere vFXT Provider 2020-06-03
Summary
This is the preview release of the Terraform Avere vFXT Provider. To learn more, visit the Avere vFXT provider page.
Feature
- add User blocks to enable management of rw/ro only users
Fix
- fix cluster creation and update ordering including setting DNS before adding CoreFilers.