FloatingIpAssignment
Provides a Hetzner Cloud Floating IP Assignment to assign a Floating IP to a Hetzner Cloud Server. Deleting a Floating IP Assignment will unassign the Floating IP from the Server.
Example Usage
using Pulumi;
using HCloud = Pulumi.HCloud;
class MyStack : Stack
{
public MyStack()
{
var node1 = new HCloud.Server("node1", new HCloud.ServerArgs
{
Datacenter = "fsn1-dc8",
Image = "debian-9",
ServerType = "cx11",
});
var master = new HCloud.FloatingIp("master", new HCloud.FloatingIpArgs
{
HomeLocation = "nbg1",
Type = "ipv4",
});
var main = new HCloud.FloatingIpAssignment("main", new HCloud.FloatingIpAssignmentArgs
{
FloatingIpId = master.Id,
ServerId = node1.Id,
});
}
}
package main
import (
"github.com/pulumi/pulumi-hcloud/sdk/go/hcloud"
"github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
node1, err := hcloud.NewServer(ctx, "node1", &hcloud.ServerArgs{
Datacenter: pulumi.String("fsn1-dc8"),
Image: pulumi.String("debian-9"),
ServerType: pulumi.String("cx11"),
})
if err != nil {
return err
}
master, err := hcloud.NewFloatingIp(ctx, "master", &hcloud.FloatingIpArgs{
HomeLocation: pulumi.String("nbg1"),
Type: pulumi.String("ipv4"),
})
if err != nil {
return err
}
_, err = hcloud.NewFloatingIpAssignment(ctx, "main", &hcloud.FloatingIpAssignmentArgs{
FloatingIpId: master.ID(),
ServerId: node1.ID(),
})
if err != nil {
return err
}
return nil
})
}import pulumi
import pulumi_hcloud as hcloud
node1 = hcloud.Server("node1",
datacenter="fsn1-dc8",
image="debian-9",
server_type="cx11")
master = hcloud.FloatingIp("master",
home_location="nbg1",
type="ipv4")
main = hcloud.FloatingIpAssignment("main",
floating_ip_id=master.id,
server_id=node1.id)import * as pulumi from "@pulumi/pulumi";
import * as hcloud from "@pulumi/hcloud";
const node1 = new hcloud.Server("node1", {
datacenter: "fsn1-dc8",
image: "debian-9",
serverType: "cx11",
});
const master = new hcloud.FloatingIp("master", {
homeLocation: "nbg1",
type: "ipv4",
});
const main = new hcloud.FloatingIpAssignment("main", {
floatingIpId: master.id.apply(id => Number.parseFloat(id)),
serverId: node1.id.apply(id => Number.parseFloat(id)),
});Create a FloatingIpAssignment Resource
new FloatingIpAssignment(name: string, args: FloatingIpAssignmentArgs, opts?: CustomResourceOptions);def FloatingIpAssignment(resource_name, opts=None, floating_ip_id=None, server_id=None, __props__=None);func NewFloatingIpAssignment(ctx *Context, name string, args FloatingIpAssignmentArgs, opts ...ResourceOption) (*FloatingIpAssignment, error)public FloatingIpAssignment(string name, FloatingIpAssignmentArgs args, CustomResourceOptions? opts = null)- name string
- The unique name of the resource.
- args FloatingIpAssignmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- opts ResourceOptions
- A bag of options that control this resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FloatingIpAssignmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FloatingIpAssignmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
FloatingIpAssignment Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.
Inputs
The FloatingIpAssignment resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the FloatingIpAssignment resource produces the following output properties:
Look up an Existing FloatingIpAssignment Resource
Get an existing FloatingIpAssignment resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: FloatingIpAssignmentState, opts?: CustomResourceOptions): FloatingIpAssignmentstatic get(resource_name, id, opts=None, floating_ip_id=None, server_id=None, __props__=None);func GetFloatingIpAssignment(ctx *Context, name string, id IDInput, state *FloatingIpAssignmentState, opts ...ResourceOption) (*FloatingIpAssignment, error)public static FloatingIpAssignment Get(string name, Input<string> id, FloatingIpAssignmentState? state, CustomResourceOptions? opts = null)- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
The following state arguments are supported:
Package Details
- Repository
- https://github.com/pulumi/pulumi-hcloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
hcloudTerraform Provider.