scaleway.InstanceIp
Explore with Pulumi AI
Creates and manages Scaleway compute Instance IPs. For more information, see the documentation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as scaleway from "@pulumiverse/scaleway";
const serverIp = new scaleway.InstanceIp("serverIp", {});
import pulumi
import pulumiverse_scaleway as scaleway
server_ip = scaleway.InstanceIp("serverIp")
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.NewInstanceIp(ctx, "serverIp", nil)
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 serverIp = new Scaleway.InstanceIp("serverIp");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.scaleway.InstanceIp;
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 serverIp = new InstanceIp("serverIp");
}
}
resources:
serverIp:
type: scaleway:InstanceIp
Create InstanceIp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new InstanceIp(name: string, args?: InstanceIpArgs, opts?: CustomResourceOptions);
@overload
def InstanceIp(resource_name: str,
args: Optional[InstanceIpArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def InstanceIp(resource_name: str,
opts: Optional[ResourceOptions] = None,
project_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
type: Optional[str] = None,
zone: Optional[str] = None)
func NewInstanceIp(ctx *Context, name string, args *InstanceIpArgs, opts ...ResourceOption) (*InstanceIp, error)
public InstanceIp(string name, InstanceIpArgs? args = null, CustomResourceOptions? opts = null)
public InstanceIp(String name, InstanceIpArgs args)
public InstanceIp(String name, InstanceIpArgs args, CustomResourceOptions options)
type: scaleway:InstanceIp
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 InstanceIpArgs
- 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 InstanceIpArgs
- 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 InstanceIpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InstanceIpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InstanceIpArgs
- 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 instanceIpResource = new Scaleway.InstanceIp("instanceIpResource", new()
{
ProjectId = "string",
Tags = new[]
{
"string",
},
Type = "string",
Zone = "string",
});
example, err := scaleway.NewInstanceIp(ctx, "instanceIpResource", &scaleway.InstanceIpArgs{
ProjectId: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Type: pulumi.String("string"),
Zone: pulumi.String("string"),
})
var instanceIpResource = new InstanceIp("instanceIpResource", InstanceIpArgs.builder()
.projectId("string")
.tags("string")
.type("string")
.zone("string")
.build());
instance_ip_resource = scaleway.InstanceIp("instanceIpResource",
project_id="string",
tags=["string"],
type="string",
zone="string")
const instanceIpResource = new scaleway.InstanceIp("instanceIpResource", {
projectId: "string",
tags: ["string"],
type: "string",
zone: "string",
});
type: scaleway:InstanceIp
properties:
projectId: string
tags:
- string
type: string
zone: string
InstanceIp 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 InstanceIp resource accepts the following input properties:
- Project
Id string project_id
) The ID of the project the IP is associated with.- List<string>
- The tags associated with the IP.
- Type string
The type of the IP (
nat
,routed_ipv4
,routed_ipv6
), more information in the documentationImportant: An IP can migrate from
nat
torouted_ipv4
but cannot be converted back- Zone string
zone
) The zone in which the IP should be reserved.
- Project
Id string project_id
) The ID of the project the IP is associated with.- []string
- The tags associated with the IP.
- Type string
The type of the IP (
nat
,routed_ipv4
,routed_ipv6
), more information in the documentationImportant: An IP can migrate from
nat
torouted_ipv4
but cannot be converted back- Zone string
zone
) The zone in which the IP should be reserved.
- project
Id String project_id
) The ID of the project the IP is associated with.- List<String>
- The tags associated with the IP.
- type String
The type of the IP (
nat
,routed_ipv4
,routed_ipv6
), more information in the documentationImportant: An IP can migrate from
nat
torouted_ipv4
but cannot be converted back- zone String
zone
) The zone in which the IP should be reserved.
- project
Id string project_id
) The ID of the project the IP is associated with.- string[]
- The tags associated with the IP.
- type string
The type of the IP (
nat
,routed_ipv4
,routed_ipv6
), more information in the documentationImportant: An IP can migrate from
nat
torouted_ipv4
but cannot be converted back- zone string
zone
) The zone in which the IP should be reserved.
- project_
id str project_id
) The ID of the project the IP is associated with.- Sequence[str]
- The tags associated with the IP.
- type str
The type of the IP (
nat
,routed_ipv4
,routed_ipv6
), more information in the documentationImportant: An IP can migrate from
nat
torouted_ipv4
but cannot be converted back- zone str
zone
) The zone in which the IP should be reserved.
- project
Id String project_id
) The ID of the project the IP is associated with.- List<String>
- The tags associated with the IP.
- type String
The type of the IP (
nat
,routed_ipv4
,routed_ipv6
), more information in the documentationImportant: An IP can migrate from
nat
torouted_ipv4
but cannot be converted back- zone String
zone
) The zone in which the IP should be reserved.
Outputs
All input properties are implicitly available as output properties. Additionally, the InstanceIp resource produces the following output properties:
Look up Existing InstanceIp Resource
Get an existing InstanceIp 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?: InstanceIpState, opts?: CustomResourceOptions): InstanceIp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
address: Optional[str] = None,
organization_id: Optional[str] = None,
prefix: Optional[str] = None,
project_id: Optional[str] = None,
reverse: Optional[str] = None,
server_id: Optional[str] = None,
tags: Optional[Sequence[str]] = None,
type: Optional[str] = None,
zone: Optional[str] = None) -> InstanceIp
func GetInstanceIp(ctx *Context, name string, id IDInput, state *InstanceIpState, opts ...ResourceOption) (*InstanceIp, error)
public static InstanceIp Get(string name, Input<string> id, InstanceIpState? state, CustomResourceOptions? opts = null)
public static InstanceIp get(String name, Output<String> id, InstanceIpState 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 IP address.
- Organization
Id string - The organization ID the IP is associated with.
- Prefix string
- The IP Prefix.
- Project
Id string project_id
) The ID of the project the IP is associated with.- Reverse string
- The reverse dns attached to this IP
- Server
Id string - The server associated with this IP
- List<string>
- The tags associated with the IP.
- Type string
The type of the IP (
nat
,routed_ipv4
,routed_ipv6
), more information in the documentationImportant: An IP can migrate from
nat
torouted_ipv4
but cannot be converted back- Zone string
zone
) The zone in which the IP should be reserved.
- Address string
- The IP address.
- Organization
Id string - The organization ID the IP is associated with.
- Prefix string
- The IP Prefix.
- Project
Id string project_id
) The ID of the project the IP is associated with.- Reverse string
- The reverse dns attached to this IP
- Server
Id string - The server associated with this IP
- []string
- The tags associated with the IP.
- Type string
The type of the IP (
nat
,routed_ipv4
,routed_ipv6
), more information in the documentationImportant: An IP can migrate from
nat
torouted_ipv4
but cannot be converted back- Zone string
zone
) The zone in which the IP should be reserved.
- address String
- The IP address.
- organization
Id String - The organization ID the IP is associated with.
- prefix String
- The IP Prefix.
- project
Id String project_id
) The ID of the project the IP is associated with.- reverse String
- The reverse dns attached to this IP
- server
Id String - The server associated with this IP
- List<String>
- The tags associated with the IP.
- type String
The type of the IP (
nat
,routed_ipv4
,routed_ipv6
), more information in the documentationImportant: An IP can migrate from
nat
torouted_ipv4
but cannot be converted back- zone String
zone
) The zone in which the IP should be reserved.
- address string
- The IP address.
- organization
Id string - The organization ID the IP is associated with.
- prefix string
- The IP Prefix.
- project
Id string project_id
) The ID of the project the IP is associated with.- reverse string
- The reverse dns attached to this IP
- server
Id string - The server associated with this IP
- string[]
- The tags associated with the IP.
- type string
The type of the IP (
nat
,routed_ipv4
,routed_ipv6
), more information in the documentationImportant: An IP can migrate from
nat
torouted_ipv4
but cannot be converted back- zone string
zone
) The zone in which the IP should be reserved.
- address str
- The IP address.
- organization_
id str - The organization ID the IP is associated with.
- prefix str
- The IP Prefix.
- project_
id str project_id
) The ID of the project the IP is associated with.- reverse str
- The reverse dns attached to this IP
- server_
id str - The server associated with this IP
- Sequence[str]
- The tags associated with the IP.
- type str
The type of the IP (
nat
,routed_ipv4
,routed_ipv6
), more information in the documentationImportant: An IP can migrate from
nat
torouted_ipv4
but cannot be converted back- zone str
zone
) The zone in which the IP should be reserved.
- address String
- The IP address.
- organization
Id String - The organization ID the IP is associated with.
- prefix String
- The IP Prefix.
- project
Id String project_id
) The ID of the project the IP is associated with.- reverse String
- The reverse dns attached to this IP
- server
Id String - The server associated with this IP
- List<String>
- The tags associated with the IP.
- type String
The type of the IP (
nat
,routed_ipv4
,routed_ipv6
), more information in the documentationImportant: An IP can migrate from
nat
torouted_ipv4
but cannot be converted back- zone String
zone
) The zone in which the IP should be reserved.
Import
IPs can be imported using the {zone}/{id}
, e.g.
bash
$ pulumi import scaleway:index/instanceIp:InstanceIp server_ip 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.