Namespace Pulumi.F5BigIP.CM
Classes
Device
f5bigip.cm.Device provides details about a specific bigip
This resource is helpful when configuring the BIG-IP device in cluster or in HA mode.
Example Usage
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
class MyStack : Stack
{
public MyStack()
{
var myNewDevice = new F5BigIP.CM.Device("myNewDevice", new F5BigIP.CM.DeviceArgs
{
ConfigsyncIp = "2.2.2.2",
MirrorIp = "10.10.10.10",
MirrorSecondaryIp = "11.11.11.11",
Name = "bigip300.f5.com",
});
}
}
DeviceArgs
DeviceGroup
f5bigip.cm.DeviceGroup A device group is a collection of BIG-IP devices that are configured to securely synchronize their BIG-IP configuration data, and fail over when needed.
Example Usage
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
class MyStack : Stack
{
public MyStack()
{
var myNewDevicegroup = new F5BigIP.CM.DeviceGroup("myNewDevicegroup", new F5BigIP.CM.DeviceGroupArgs
{
AutoSync = "enabled",
Devices =
{
new F5BigIP.CM.Inputs.DeviceGroupDeviceArgs
{
Name = "bigip1.cisco.com",
},
new F5BigIP.CM.Inputs.DeviceGroupDeviceArgs
{
Name = "bigip200.f5.com",
},
},
FullLoadOnSync = "true",
Name = "sanjose_devicegroup",
Type = "sync-only",
});
}
}