scaleway.FlexibleIp
Explore with Pulumi AI
Creates and manages Scaleway flexible IPs. For more information, see the documentation.
Example Usage
Basic
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.FlexibleIp("main", {reverse: "my-reverse.com"});
import pulumi
import pulumiverse_scaleway as scaleway
main = scaleway.FlexibleIp("main", reverse="my-reverse.com")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := scaleway.NewFlexibleIp(ctx, "main", &scaleway.FlexibleIpArgs{
Reverse: pulumi.String("my-reverse.com"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.FlexibleIp("main", new()
{
Reverse = "my-reverse.com",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.FlexibleIp;
import com.pulumi.scaleway.FlexibleIpArgs;
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 main = new FlexibleIp("main", FlexibleIpArgs.builder()
.reverse("my-reverse.com")
.build());
}
}
resources:
main:
type: scaleway:FlexibleIp
properties:
reverse: my-reverse.com
With zone
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.FlexibleIp("main", {zone: "fr-par-2"});
import pulumi
import pulumiverse_scaleway as scaleway
main = scaleway.FlexibleIp("main", zone="fr-par-2")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := scaleway.NewFlexibleIp(ctx, "main", &scaleway.FlexibleIpArgs{
Zone: pulumi.String("fr-par-2"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.FlexibleIp("main", new()
{
Zone = "fr-par-2",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.FlexibleIp;
import com.pulumi.scaleway.FlexibleIpArgs;
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 main = new FlexibleIp("main", FlexibleIpArgs.builder()
.zone("fr-par-2")
.build());
}
}
resources:
main:
type: scaleway:FlexibleIp
properties:
zone: fr-par-2
With IPv6
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.FlexibleIp("main", {isIpv6: true});
import pulumi
import pulumiverse_scaleway as scaleway
main = scaleway.FlexibleIp("main", is_ipv6=True)
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := scaleway.NewFlexibleIp(ctx, "main", &scaleway.FlexibleIpArgs{
IsIpv6: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.FlexibleIp("main", new()
{
IsIpv6 = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.FlexibleIp;
import com.pulumi.scaleway.FlexibleIpArgs;
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 main = new FlexibleIp("main", FlexibleIpArgs.builder()
.isIpv6("true")
.build());
}
}
resources:
main:
type: scaleway:FlexibleIp
properties:
isIpv6: 'true'
With baremetal server
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumi/scaleway";
import * as scaleway from "@pulumiverse/scaleway";
const main = new scaleway.AccountSshKey("main", {
name: "main",
publicKey: "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ foobar@example.com",
});
const byId = scaleway.getBaremetalOs({
zone: "fr-par-2",
name: "Ubuntu",
version: "20.04 LTS (Focal Fossa)",
});
const myOffer = scaleway.getBaremetalOffer({
zone: "fr-par-2",
name: "EM-A210R-HDD",
});
const base = new scaleway.BaremetalServer("base", {
zone: "fr-par-2",
offer: myOffer.then(myOffer => myOffer.offerId),
os: byId.then(byId => byId.osId),
sshKeyIds: main.id,
});
const mainFlexibleIp = new scaleway.FlexibleIp("main", {
serverId: base.id,
zone: "fr-par-2",
});
import pulumi
import pulumi_scaleway as scaleway
import pulumiverse_scaleway as scaleway
main = scaleway.AccountSshKey("main",
name="main",
public_key="ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ foobar@example.com")
by_id = scaleway.get_baremetal_os(zone="fr-par-2",
name="Ubuntu",
version="20.04 LTS (Focal Fossa)")
my_offer = scaleway.get_baremetal_offer(zone="fr-par-2",
name="EM-A210R-HDD")
base = scaleway.BaremetalServer("base",
zone="fr-par-2",
offer=my_offer.offer_id,
os=by_id.os_id,
ssh_key_ids=main.id)
main_flexible_ip = scaleway.FlexibleIp("main",
server_id=base.id,
zone="fr-par-2")
package main
import (
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumiverse/pulumi-scaleway/sdk/go/scaleway"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
main, err := scaleway.NewAccountSshKey(ctx, "main", &scaleway.AccountSshKeyArgs{
Name: pulumi.String("main"),
PublicKey: pulumi.String("ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ foobar@example.com"),
})
if err != nil {
return err
}
byId, err := scaleway.GetBaremetalOs(ctx, &scaleway.GetBaremetalOsArgs{
Zone: pulumi.StringRef("fr-par-2"),
Name: pulumi.StringRef("Ubuntu"),
Version: pulumi.StringRef("20.04 LTS (Focal Fossa)"),
}, nil)
if err != nil {
return err
}
myOffer, err := scaleway.GetBaremetalOffer(ctx, &scaleway.GetBaremetalOfferArgs{
Zone: pulumi.StringRef("fr-par-2"),
Name: pulumi.StringRef("EM-A210R-HDD"),
}, nil)
if err != nil {
return err
}
base, err := scaleway.NewBaremetalServer(ctx, "base", &scaleway.BaremetalServerArgs{
Zone: pulumi.String("fr-par-2"),
Offer: pulumi.String(myOffer.OfferId),
Os: pulumi.String(byId.OsId),
SshKeyIds: main.ID(),
})
if err != nil {
return err
}
_, err = scaleway.NewFlexibleIp(ctx, "main", &scaleway.FlexibleIpArgs{
ServerId: base.ID(),
Zone: pulumi.String("fr-par-2"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Scaleway = Pulumi.Scaleway;
using Scaleway = Pulumiverse.Scaleway;
return await Deployment.RunAsync(() =>
{
var main = new Scaleway.AccountSshKey("main", new()
{
Name = "main",
PublicKey = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ foobar@example.com",
});
var byId = Scaleway.GetBaremetalOs.Invoke(new()
{
Zone = "fr-par-2",
Name = "Ubuntu",
Version = "20.04 LTS (Focal Fossa)",
});
var myOffer = Scaleway.GetBaremetalOffer.Invoke(new()
{
Zone = "fr-par-2",
Name = "EM-A210R-HDD",
});
var @base = new Scaleway.BaremetalServer("base", new()
{
Zone = "fr-par-2",
Offer = myOffer.Apply(getBaremetalOfferResult => getBaremetalOfferResult.OfferId),
Os = byId.Apply(getBaremetalOsResult => getBaremetalOsResult.OsId),
SshKeyIds = main.Id,
});
var mainFlexibleIp = new Scaleway.FlexibleIp("main", new()
{
ServerId = @base.Id,
Zone = "fr-par-2",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.AccountSshKey;
import com.pulumi.scaleway.AccountSshKeyArgs;
import com.pulumi.scaleway.ScalewayFunctions;
import com.pulumi.scaleway.inputs.GetBaremetalOsArgs;
import com.pulumi.scaleway.inputs.GetBaremetalOfferArgs;
import com.pulumi.scaleway.BaremetalServer;
import com.pulumi.scaleway.BaremetalServerArgs;
import com.pulumi.scaleway.FlexibleIp;
import com.pulumi.scaleway.FlexibleIpArgs;
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 main = new AccountSshKey("main", AccountSshKeyArgs.builder()
.name("main")
.publicKey("ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ foobar@example.com")
.build());
final var byId = ScalewayFunctions.getBaremetalOs(GetBaremetalOsArgs.builder()
.zone("fr-par-2")
.name("Ubuntu")
.version("20.04 LTS (Focal Fossa)")
.build());
final var myOffer = ScalewayFunctions.getBaremetalOffer(GetBaremetalOfferArgs.builder()
.zone("fr-par-2")
.name("EM-A210R-HDD")
.build());
var base = new BaremetalServer("base", BaremetalServerArgs.builder()
.zone("fr-par-2")
.offer(myOffer.applyValue(getBaremetalOfferResult -> getBaremetalOfferResult.offerId()))
.os(byId.applyValue(getBaremetalOsResult -> getBaremetalOsResult.osId()))
.sshKeyIds(main.id())
.build());
var mainFlexibleIp = new FlexibleIp("mainFlexibleIp", FlexibleIpArgs.builder()
.serverId(base.id())
.zone("fr-par-2")
.build());
}
}
resources:
main:
type: scaleway:AccountSshKey
properties:
name: main
publicKey: ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILHy/M5FVm5ydLGcal3e5LNcfTalbeN7QL/ZGCvDEdqJ foobar@example.com
base:
type: scaleway:BaremetalServer
properties:
zone: fr-par-2
offer: ${myOffer.offerId}
os: ${byId.osId}
sshKeyIds: ${main.id}
mainFlexibleIp:
type: scaleway:FlexibleIp
name: main
properties:
serverId: ${base.id}
zone: fr-par-2
variables:
byId:
fn::invoke:
Function: scaleway:getBaremetalOs
Arguments:
zone: fr-par-2
name: Ubuntu
version: 20.04 LTS (Focal Fossa)
myOffer:
fn::invoke:
Function: scaleway:getBaremetalOffer
Arguments:
zone: fr-par-2
name: EM-A210R-HDD
Create FlexibleIp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new FlexibleIp(name: string, args?: FlexibleIpArgs, opts?: CustomResourceOptions);
@overload
def FlexibleIp(resource_name: str,
args: Optional[FlexibleIpArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def FlexibleIp(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
is_ipv6: Optional[bool] = None,
project_id: Optional[str] = None,
reverse: Optional[str] = None,
server_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
zone: Optional[str] = None)
func NewFlexibleIp(ctx *Context, name string, args *FlexibleIpArgs, opts ...ResourceOption) (*FlexibleIp, error)
public FlexibleIp(string name, FlexibleIpArgs? args = null, CustomResourceOptions? opts = null)
public FlexibleIp(String name, FlexibleIpArgs args)
public FlexibleIp(String name, FlexibleIpArgs args, CustomResourceOptions options)
type: scaleway:FlexibleIp
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 FlexibleIpArgs
- 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 FlexibleIpArgs
- 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 FlexibleIpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args FlexibleIpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args FlexibleIpArgs
- 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 flexibleIpResource = new Scaleway.FlexibleIp("flexibleIpResource", new()
{
Description = "string",
IsIpv6 = false,
ProjectId = "string",
Reverse = "string",
ServerId = "string",
Tags = new[]
{
"string",
},
Zone = "string",
});
example, err := scaleway.NewFlexibleIp(ctx, "flexibleIpResource", &scaleway.FlexibleIpArgs{
Description: pulumi.String("string"),
IsIpv6: pulumi.Bool(false),
ProjectId: pulumi.String("string"),
Reverse: pulumi.String("string"),
ServerId: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Zone: pulumi.String("string"),
})
var flexibleIpResource = new FlexibleIp("flexibleIpResource", FlexibleIpArgs.builder()
.description("string")
.isIpv6(false)
.projectId("string")
.reverse("string")
.serverId("string")
.tags("string")
.zone("string")
.build());
flexible_ip_resource = scaleway.FlexibleIp("flexibleIpResource",
description="string",
is_ipv6=False,
project_id="string",
reverse="string",
server_id="string",
tags=["string"],
zone="string")
const flexibleIpResource = new scaleway.FlexibleIp("flexibleIpResource", {
description: "string",
isIpv6: false,
projectId: "string",
reverse: "string",
serverId: "string",
tags: ["string"],
zone: "string",
});
type: scaleway:FlexibleIp
properties:
description: string
isIpv6: false
projectId: string
reverse: string
serverId: string
tags:
- string
zone: string
FlexibleIp Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The FlexibleIp resource accepts the following input properties:
- Description string
- A description of the flexible IP.
- Is
Ipv6 bool - Defines whether the flexible IP has an IPv6 address.
- Project
Id string - The project of the Flexible IP.
- Reverse string
- The reverse domain associated with this flexible IP.
- Server
Id string - The ID of the associated server.
- List<string>
- A list of tags to apply to the flexible IP.
- Zone string
- The zone of the Flexible IP.
- Description string
- A description of the flexible IP.
- Is
Ipv6 bool - Defines whether the flexible IP has an IPv6 address.
- Project
Id string - The project of the Flexible IP.
- Reverse string
- The reverse domain associated with this flexible IP.
- Server
Id string - The ID of the associated server.
- []string
- A list of tags to apply to the flexible IP.
- Zone string
- The zone of the Flexible IP.
- description String
- A description of the flexible IP.
- is
Ipv6 Boolean - Defines whether the flexible IP has an IPv6 address.
- project
Id String - The project of the Flexible IP.
- reverse String
- The reverse domain associated with this flexible IP.
- server
Id String - The ID of the associated server.
- List<String>
- A list of tags to apply to the flexible IP.
- zone String
- The zone of the Flexible IP.
- description string
- A description of the flexible IP.
- is
Ipv6 boolean - Defines whether the flexible IP has an IPv6 address.
- project
Id string - The project of the Flexible IP.
- reverse string
- The reverse domain associated with this flexible IP.
- server
Id string - The ID of the associated server.
- string[]
- A list of tags to apply to the flexible IP.
- zone string
- The zone of the Flexible IP.
- description str
- A description of the flexible IP.
- is_
ipv6 bool - Defines whether the flexible IP has an IPv6 address.
- project_
id str - The project of the Flexible IP.
- reverse str
- The reverse domain associated with this flexible IP.
- server_
id str - The ID of the associated server.
- Sequence[str]
- A list of tags to apply to the flexible IP.
- zone str
- The zone of the Flexible IP.
- description String
- A description of the flexible IP.
- is
Ipv6 Boolean - Defines whether the flexible IP has an IPv6 address.
- project
Id String - The project of the Flexible IP.
- reverse String
- The reverse domain associated with this flexible IP.
- server
Id String - The ID of the associated server.
- List<String>
- A list of tags to apply to the flexible IP.
- zone String
- The zone of the Flexible IP.
Outputs
All input properties are implicitly available as output properties. Additionally, the FlexibleIp resource produces the following output properties:
- Created
At string - The date and time of the creation of the Flexible IP (Format ISO 8601).
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Address string - The IP address of the Flexible IP.
- Organization
Id string - The organization of the Flexible IP.
- Status string
- The status of the flexible IP.
- Updated
At string - The date and time of the last update of the Flexible IP (Format ISO 8601).
- Created
At string - The date and time of the creation of the Flexible IP (Format ISO 8601).
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Address string - The IP address of the Flexible IP.
- Organization
Id string - The organization of the Flexible IP.
- Status string
- The status of the flexible IP.
- Updated
At string - The date and time of the last update of the Flexible IP (Format ISO 8601).
- created
At String - The date and time of the creation of the Flexible IP (Format ISO 8601).
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Address String - The IP address of the Flexible IP.
- organization
Id String - The organization of the Flexible IP.
- status String
- The status of the flexible IP.
- updated
At String - The date and time of the last update of the Flexible IP (Format ISO 8601).
- created
At string - The date and time of the creation of the Flexible IP (Format ISO 8601).
- id string
- The provider-assigned unique ID for this managed resource.
- ip
Address string - The IP address of the Flexible IP.
- organization
Id string - The organization of the Flexible IP.
- status string
- The status of the flexible IP.
- updated
At string - The date and time of the last update of the Flexible IP (Format ISO 8601).
- created_
at str - The date and time of the creation of the Flexible IP (Format ISO 8601).
- id str
- The provider-assigned unique ID for this managed resource.
- ip_
address str - The IP address of the Flexible IP.
- organization_
id str - The organization of the Flexible IP.
- status str
- The status of the flexible IP.
- updated_
at str - The date and time of the last update of the Flexible IP (Format ISO 8601).
- created
At String - The date and time of the creation of the Flexible IP (Format ISO 8601).
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Address String - The IP address of the Flexible IP.
- organization
Id String - The organization of the Flexible IP.
- status String
- The status of the flexible IP.
- updated
At String - The date and time of the last update of the Flexible IP (Format ISO 8601).
Look up Existing FlexibleIp Resource
Get an existing FlexibleIp 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?: FlexibleIpState, opts?: CustomResourceOptions): FlexibleIp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
description: Optional[str] = None,
ip_address: Optional[str] = None,
is_ipv6: Optional[bool] = None,
organization_id: Optional[str] = None,
project_id: Optional[str] = None,
reverse: Optional[str] = None,
server_id: Optional[str] = None,
status: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
updated_at: Optional[str] = None,
zone: Optional[str] = None) -> FlexibleIp
func GetFlexibleIp(ctx *Context, name string, id IDInput, state *FlexibleIpState, opts ...ResourceOption) (*FlexibleIp, error)
public static FlexibleIp Get(string name, Input<string> id, FlexibleIpState? state, CustomResourceOptions? opts = null)
public static FlexibleIp get(String name, Output<String> id, FlexibleIpState 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.
- Created
At string - The date and time of the creation of the Flexible IP (Format ISO 8601).
- Description string
- A description of the flexible IP.
- Ip
Address string - The IP address of the Flexible IP.
- Is
Ipv6 bool - Defines whether the flexible IP has an IPv6 address.
- Organization
Id string - The organization of the Flexible IP.
- Project
Id string - The project of the Flexible IP.
- Reverse string
- The reverse domain associated with this flexible IP.
- Server
Id string - The ID of the associated server.
- Status string
- The status of the flexible IP.
- List<string>
- A list of tags to apply to the flexible IP.
- Updated
At string - The date and time of the last update of the Flexible IP (Format ISO 8601).
- Zone string
- The zone of the Flexible IP.
- Created
At string - The date and time of the creation of the Flexible IP (Format ISO 8601).
- Description string
- A description of the flexible IP.
- Ip
Address string - The IP address of the Flexible IP.
- Is
Ipv6 bool - Defines whether the flexible IP has an IPv6 address.
- Organization
Id string - The organization of the Flexible IP.
- Project
Id string - The project of the Flexible IP.
- Reverse string
- The reverse domain associated with this flexible IP.
- Server
Id string - The ID of the associated server.
- Status string
- The status of the flexible IP.
- []string
- A list of tags to apply to the flexible IP.
- Updated
At string - The date and time of the last update of the Flexible IP (Format ISO 8601).
- Zone string
- The zone of the Flexible IP.
- created
At String - The date and time of the creation of the Flexible IP (Format ISO 8601).
- description String
- A description of the flexible IP.
- ip
Address String - The IP address of the Flexible IP.
- is
Ipv6 Boolean - Defines whether the flexible IP has an IPv6 address.
- organization
Id String - The organization of the Flexible IP.
- project
Id String - The project of the Flexible IP.
- reverse String
- The reverse domain associated with this flexible IP.
- server
Id String - The ID of the associated server.
- status String
- The status of the flexible IP.
- List<String>
- A list of tags to apply to the flexible IP.
- updated
At String - The date and time of the last update of the Flexible IP (Format ISO 8601).
- zone String
- The zone of the Flexible IP.
- created
At string - The date and time of the creation of the Flexible IP (Format ISO 8601).
- description string
- A description of the flexible IP.
- ip
Address string - The IP address of the Flexible IP.
- is
Ipv6 boolean - Defines whether the flexible IP has an IPv6 address.
- organization
Id string - The organization of the Flexible IP.
- project
Id string - The project of the Flexible IP.
- reverse string
- The reverse domain associated with this flexible IP.
- server
Id string - The ID of the associated server.
- status string
- The status of the flexible IP.
- string[]
- A list of tags to apply to the flexible IP.
- updated
At string - The date and time of the last update of the Flexible IP (Format ISO 8601).
- zone string
- The zone of the Flexible IP.
- created_
at str - The date and time of the creation of the Flexible IP (Format ISO 8601).
- description str
- A description of the flexible IP.
- ip_
address str - The IP address of the Flexible IP.
- is_
ipv6 bool - Defines whether the flexible IP has an IPv6 address.
- organization_
id str - The organization of the Flexible IP.
- project_
id str - The project of the Flexible IP.
- reverse str
- The reverse domain associated with this flexible IP.
- server_
id str - The ID of the associated server.
- status str
- The status of the flexible IP.
- Sequence[str]
- A list of tags to apply to the flexible IP.
- updated_
at str - The date and time of the last update of the Flexible IP (Format ISO 8601).
- zone str
- The zone of the Flexible IP.
- created
At String - The date and time of the creation of the Flexible IP (Format ISO 8601).
- description String
- A description of the flexible IP.
- ip
Address String - The IP address of the Flexible IP.
- is
Ipv6 Boolean - Defines whether the flexible IP has an IPv6 address.
- organization
Id String - The organization of the Flexible IP.
- project
Id String - The project of the Flexible IP.
- reverse String
- The reverse domain associated with this flexible IP.
- server
Id String - The ID of the associated server.
- status String
- The status of the flexible IP.
- List<String>
- A list of tags to apply to the flexible IP.
- updated
At String - The date and time of the last update of the Flexible IP (Format ISO 8601).
- zone String
- The zone of the Flexible IP.
Import
Flexible IPs can be imported using the {zone}/{id}
, e.g.
bash
$ pulumi import scaleway:index/flexibleIp:FlexibleIp main fr-par-1/11111111-1111-1111-1111-111111111111
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- scaleway pulumiverse/pulumi-scaleway
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
scaleway
Terraform Provider.