Skip to content

v2.8.0

Compare
Choose a tag to compare
@Binsabbar Binsabbar released this 11 Oct 13:39
· 135 commits to master since this release

v2.8.0:

New

  • instances: add new argument availability_config. for VM migration during infrastructure maintenance events

Fix

None

Breaking Changes

  • instances modules input is updated. A new key availability_config is now required under var.instances.*.config.
    • Add is_live_migration_preferred and set its value to true. Example of partial instance object.
    • Add recovery_action and set its value to RESTORE_INSTANCE. Example of partial instance object.
 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
        }
      }
    ...
    ...