v2.8.0
v2.8.0:
New
instances
: add new argumentavailability_config
. for VM migration during infrastructure maintenance events
Fix
None
Breaking Changes
instances
modules input is updated. A new keyavailability_config
is now required undervar.instances.*.config
.- Add
is_live_migration_preferred
and set its value totrue
. Example of partial instance object. - Add
recovery_action
and set its value toRESTORE_INSTANCE
. Example of partial instance object.
- Add
instances = {
...
...
...
network_sgs_ids = [
"ocixxxxxx.xxxxxx.xxxxx", "ocixxxxxx.xxxxxx.xxxxx",
]
primary_vnic = {
primary_ip = ""
secondary_ips = {}
}
availability_config = { <--------------------------------------------------- note this block
recovery_action = "RESTORE_INSTANCE"
is_live_migration_preferred = false
}
}
...
...