openstack.compute.FloatingIp
Explore with Pulumi AI
Manages a V2 floating IP resource within OpenStack Nova (compute) that can be used for compute instances.
Please note that managing floating IPs through the OpenStack Compute API has
been deprecated. Unless you are using an older OpenStack environment, it is
recommended to use the openstack.networking.FloatingIp
resource instead, which uses the OpenStack Networking API.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as openstack from "@pulumi/openstack";
const floatip1 = new openstack.compute.FloatingIp("floatip_1", {pool: "public"});
import pulumi
import pulumi_openstack as openstack
floatip1 = openstack.compute.FloatingIp("floatip_1", pool="public")
package main
import (
"github.com/pulumi/pulumi-openstack/sdk/v4/go/openstack/compute"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := compute.NewFloatingIp(ctx, "floatip_1", &compute.FloatingIpArgs{
Pool: pulumi.String("public"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using OpenStack = Pulumi.OpenStack;
return await Deployment.RunAsync(() =>
{
var floatip1 = new OpenStack.Compute.FloatingIp("floatip_1", new()
{
Pool = "public",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.openstack.compute.FloatingIp;
import com.pulumi.openstack.compute.FloatingIpArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var floatip1 = new FloatingIp("floatip1", FloatingIpArgs.builder()
.pool("public")
.build());
}
}
resources:
floatip1:
type: openstack:compute:FloatingIp
name: floatip_1
properties:
pool: public
Create FloatingIp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FloatingIp(name: string, args: FloatingIpArgs, opts?: CustomResourceOptions);
@overload
def FloatingIp(resource_name: str,
args: FloatingIpArgs,
opts: Optional[ResourceOptions] = None)
@overload
def FloatingIp(resource_name: str,
opts: Optional[ResourceOptions] = None,
pool: Optional[str] = None,
region: Optional[str] = None)
func NewFloatingIp(ctx *Context, name string, args FloatingIpArgs, opts ...ResourceOption) (*FloatingIp, error)
public FloatingIp(string name, FloatingIpArgs args, CustomResourceOptions? opts = null)
public FloatingIp(String name, FloatingIpArgs args)
public FloatingIp(String name, FloatingIpArgs args, CustomResourceOptions options)
type: openstack:compute:FloatingIp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args FloatingIpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args FloatingIpArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args FloatingIpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FloatingIpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FloatingIpArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var floatingIpResource = new OpenStack.Compute.FloatingIp("floatingIpResource", new()
{
Pool = "string",
Region = "string",
});
example, err := compute.NewFloatingIp(ctx, "floatingIpResource", &compute.FloatingIpArgs{
Pool: pulumi.String("string"),
Region: pulumi.String("string"),
})
var floatingIpResource = new FloatingIp("floatingIpResource", FloatingIpArgs.builder()
.pool("string")
.region("string")
.build());
floating_ip_resource = openstack.compute.FloatingIp("floatingIpResource",
pool="string",
region="string")
const floatingIpResource = new openstack.compute.FloatingIp("floatingIpResource", {
pool: "string",
region: "string",
});
type: openstack:compute:FloatingIp
properties:
pool: string
region: string
FloatingIp Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The FloatingIp resource accepts the following input properties:
- Pool string
- The name of the pool from which to obtain the floating IP. Changing this creates a new floating IP.
- Region string
- The region in which to obtain the V2 Compute client.
A Compute client is needed to create a floating IP that can be used with
a compute instance. If omitted, the
region
argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
- Pool string
- The name of the pool from which to obtain the floating IP. Changing this creates a new floating IP.
- Region string
- The region in which to obtain the V2 Compute client.
A Compute client is needed to create a floating IP that can be used with
a compute instance. If omitted, the
region
argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
- pool String
- The name of the pool from which to obtain the floating IP. Changing this creates a new floating IP.
- region String
- The region in which to obtain the V2 Compute client.
A Compute client is needed to create a floating IP that can be used with
a compute instance. If omitted, the
region
argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
- pool string
- The name of the pool from which to obtain the floating IP. Changing this creates a new floating IP.
- region string
- The region in which to obtain the V2 Compute client.
A Compute client is needed to create a floating IP that can be used with
a compute instance. If omitted, the
region
argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
- pool str
- The name of the pool from which to obtain the floating IP. Changing this creates a new floating IP.
- region str
- The region in which to obtain the V2 Compute client.
A Compute client is needed to create a floating IP that can be used with
a compute instance. If omitted, the
region
argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
- pool String
- The name of the pool from which to obtain the floating IP. Changing this creates a new floating IP.
- region String
- The region in which to obtain the V2 Compute client.
A Compute client is needed to create a floating IP that can be used with
a compute instance. If omitted, the
region
argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
Outputs
All input properties are implicitly available as output properties. Additionally, the FloatingIp resource produces the following output properties:
- Address string
- The actual floating IP address itself.
- Fixed
Ip string - The fixed IP address corresponding to the floating IP.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Id string - UUID of the compute instance associated with the floating IP.
- Address string
- The actual floating IP address itself.
- Fixed
Ip string - The fixed IP address corresponding to the floating IP.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instance
Id string - UUID of the compute instance associated with the floating IP.
- address String
- The actual floating IP address itself.
- fixed
Ip String - The fixed IP address corresponding to the floating IP.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Id String - UUID of the compute instance associated with the floating IP.
- address string
- The actual floating IP address itself.
- fixed
Ip string - The fixed IP address corresponding to the floating IP.
- id string
- The provider-assigned unique ID for this managed resource.
- instance
Id string - UUID of the compute instance associated with the floating IP.
- address str
- The actual floating IP address itself.
- fixed_
ip str - The fixed IP address corresponding to the floating IP.
- id str
- The provider-assigned unique ID for this managed resource.
- instance_
id str - UUID of the compute instance associated with the floating IP.
- address String
- The actual floating IP address itself.
- fixed
Ip String - The fixed IP address corresponding to the floating IP.
- id String
- The provider-assigned unique ID for this managed resource.
- instance
Id String - UUID of the compute instance associated with the floating IP.
Look up Existing FloatingIp Resource
Get an existing FloatingIp 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?: FloatingIpState, opts?: CustomResourceOptions): FloatingIp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
address: Optional[str] = None,
fixed_ip: Optional[str] = None,
instance_id: Optional[str] = None,
pool: Optional[str] = None,
region: Optional[str] = None) -> FloatingIp
func GetFloatingIp(ctx *Context, name string, id IDInput, state *FloatingIpState, opts ...ResourceOption) (*FloatingIp, error)
public static FloatingIp Get(string name, Input<string> id, FloatingIpState? state, CustomResourceOptions? opts = null)
public static FloatingIp get(String name, Output<String> id, FloatingIpState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- 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.
- Address string
- The actual floating IP address itself.
- Fixed
Ip string - The fixed IP address corresponding to the floating IP.
- Instance
Id string - UUID of the compute instance associated with the floating IP.
- Pool string
- The name of the pool from which to obtain the floating IP. Changing this creates a new floating IP.
- Region string
- The region in which to obtain the V2 Compute client.
A Compute client is needed to create a floating IP that can be used with
a compute instance. If omitted, the
region
argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
- Address string
- The actual floating IP address itself.
- Fixed
Ip string - The fixed IP address corresponding to the floating IP.
- Instance
Id string - UUID of the compute instance associated with the floating IP.
- Pool string
- The name of the pool from which to obtain the floating IP. Changing this creates a new floating IP.
- Region string
- The region in which to obtain the V2 Compute client.
A Compute client is needed to create a floating IP that can be used with
a compute instance. If omitted, the
region
argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
- address String
- The actual floating IP address itself.
- fixed
Ip String - The fixed IP address corresponding to the floating IP.
- instance
Id String - UUID of the compute instance associated with the floating IP.
- pool String
- The name of the pool from which to obtain the floating IP. Changing this creates a new floating IP.
- region String
- The region in which to obtain the V2 Compute client.
A Compute client is needed to create a floating IP that can be used with
a compute instance. If omitted, the
region
argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
- address string
- The actual floating IP address itself.
- fixed
Ip string - The fixed IP address corresponding to the floating IP.
- instance
Id string - UUID of the compute instance associated with the floating IP.
- pool string
- The name of the pool from which to obtain the floating IP. Changing this creates a new floating IP.
- region string
- The region in which to obtain the V2 Compute client.
A Compute client is needed to create a floating IP that can be used with
a compute instance. If omitted, the
region
argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
- address str
- The actual floating IP address itself.
- fixed_
ip str - The fixed IP address corresponding to the floating IP.
- instance_
id str - UUID of the compute instance associated with the floating IP.
- pool str
- The name of the pool from which to obtain the floating IP. Changing this creates a new floating IP.
- region str
- The region in which to obtain the V2 Compute client.
A Compute client is needed to create a floating IP that can be used with
a compute instance. If omitted, the
region
argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
- address String
- The actual floating IP address itself.
- fixed
Ip String - The fixed IP address corresponding to the floating IP.
- instance
Id String - UUID of the compute instance associated with the floating IP.
- pool String
- The name of the pool from which to obtain the floating IP. Changing this creates a new floating IP.
- region String
- The region in which to obtain the V2 Compute client.
A Compute client is needed to create a floating IP that can be used with
a compute instance. If omitted, the
region
argument of the provider is used. Changing this creates a new floating IP (which may or may not have a different address).
Import
Floating IPs can be imported using the id
, e.g.
$ pulumi import openstack:compute/floatingIp:FloatingIp floatip_1 89c60255-9bd6-460c-822a-e2b959ede9d2
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- OpenStack pulumi/pulumi-openstack
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
openstack
Terraform Provider.