ReservedIpv6AssignmentArgs

data class ReservedIpv6AssignmentArgs(val dropletId: Output<Int>? = null, val ip: Output<String>? = null) : ConvertibleToJava<ReservedIpv6AssignmentArgs>

Provides a resource for assigning an existing DigitalOcean reserved IPv6 to a Droplet. This makes it easy to provision reserved IPv6 addresses that are not tied to the lifecycle of your Droplet.

Import

Reserved IPv6 assignments can be imported using the reserved IPv6 itself and the id of the Droplet joined with a comma. For example:

$ pulumi import digitalocean:index/reservedIpv6Assignment:ReservedIpv6Assignment foobar 2409:40d0:fa:27dd:9b24:7074:7b85:eee6,123456

Constructors

Link copied to clipboard
constructor(dropletId: Output<Int>? = null, ip: Output<String>? = null)

Properties

Link copied to clipboard
val dropletId: Output<Int>? = null

The ID of Droplet that the reserved IPv6 will be assigned to.

Link copied to clipboard
val ip: Output<String>? = null

The reserved IPv6 to assign to the Droplet.

Functions

Link copied to clipboard
open override fun toJava(): ReservedIpv6AssignmentArgs