Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

opennebula_virtual_router_nic: Add floating_only argument #547

Closed
sk4zuzu opened this issue May 16, 2024 · 0 comments · Fixed by #549
Closed

opennebula_virtual_router_nic: Add floating_only argument #547

sk4zuzu opened this issue May 16, 2024 · 0 comments · Fixed by #549

Comments

@sk4zuzu
Copy link
Collaborator

sk4zuzu commented May 16, 2024

Description

Since https://github.com/OpenNebula/one-ee/commit/0a7a03e098d4da6db5f057cec29daf56028b83b6 VR instances support instance deployment without NIC-dedicated IPs if the VIP is defined and is marked floating_only. Would be nice to have this feature exposed in the Provider.

New or affected resources and data sources

  • opennebula_virtual_router_nic

Potential terraform configuration

resource "opennebula_virtual_router_nic" "eth0" {
  depends_on = [
    opennebula_virtual_router_instance.router,
  ]

  model         = "virtio"
  floating_ip   = true
  floating_only = true

  virtual_router_id = opennebula_virtual_router.router.id
  network_id        = data.opennebula_virtual_network.service.id
}

References

https://docs.opennebula.io/6.8/management_and_operations/network_management/vrouter.html#high-availability

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants