Skip to content

v0.29.0

Latest
Compare
Choose a tag to compare
@ddelnano ddelnano released this 20 Mar 23:24
· 5 commits to master since this release
516842d

What's Changed

  • Fix module path for pulumi support by @belfhi in #309
  • Bump google.golang.org/protobuf from 1.32.0 to 1.33.0 by @dependabot in #315
  • Enhance provider to work with XO api token based auth by @ddelnano in #314
  • Use previous terraform releases for V0 to V1 state migration test by @ddelnano in #317
  • Replace VM resource's wait_for_ip functionality to validate it whether the ip(s) match a given prefix by @ddelnano in #305

Upgrade instructions

The xenorchestra_vm resource had its wait_for_ip parameter deprecated in favor of a per network block expected_cidr_range parameter. If you want to maintain the same behavior as wait_for_ip = true, modify your resource in the following way:

resource "xenorchestra_vm" "vm" {
   network {
       expected_ip_cidr = "0.0.0.0/0"   # use "::" if your interface is expected to have an ipv6 addr only
   }
}

Full Changelog: v0.28.1...v0.29.0