IP Failover
Creates and manages ipfailover objects.
Manages IP Failover groups on IonosCloud.
Example Usage
Argument reference
datacenter_id
- (Required)[string] The ID of a Virtual Data Center.ip
- (Required)[string] The reserved IP address to be used in the IP failover group.lan_id
- (Required)[string] The ID of a LAN.nicuuid
- (Required)[string] The ID of a NIC.
⚠ WARNING: Do not modify the IP for an IP failover group (that was provisioned via Terraform) using the DCD, the API or other means because it may lead to unexpected behavior. If you provisioned an IP failover group using Terraform, please use only Terraform in order to manage the created IP failover group.
⚠ WARNING: For creating multiple IP failover groups at the same time, you can use one of the following options:
Create multiple IP failover groups resources and use
depends_on
meta-argument to specify the order of creation, for example:
Define the resources as presented above, but without using the
depends_on
meta-argument and run the apply command using-parallelism=1
as presented below:
Import
Resource IpFailover can be imported using the resource id
, e.g.
A note on multiple NICs on an IP Failover
If you want to add a secondary NIC to an IP Failover, follow these steps:
Creating NIC A with failover IP on LAN 1
Create NIC B unde the same LAN but with a different IP
Create the IP Failover on LAN 1 with NIC A and failover IP of NIC A (A becomes now "master", no slaves)
Update NIC B IP to be the failover IP ( B becomes now a slave, A remains master)
After this you can create a new NIC C, NIC D and so on, in LAN 1, directly with the failover IP.
Please check examples for a full example with the above steps.
Last updated