outscale.PublicIpLink
Explore with Pulumi AI
Manages a public IP link.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Required resources
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const publicIp01 = new outscale.PublicIp("publicIp01", {});
const vm01 = new outscale.Vm("vm01", {
imageId: _var.image_id,
vmType: _var.vm_type,
keypairName: _var.keypair_name,
securityGroupIds: [_var.security_group_id],
});
import pulumi
import pulumi_outscale as outscale
public_ip01 = outscale.PublicIp("publicIp01")
vm01 = outscale.Vm("vm01",
image_id=var["image_id"],
vm_type=var["vm_type"],
keypair_name=var["keypair_name"],
security_group_ids=[var["security_group_id"]])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewPublicIp(ctx, "publicIp01", nil)
if err != nil {
return err
}
_, err = outscale.NewVm(ctx, "vm01", &outscale.VmArgs{
ImageId: pulumi.Any(_var.Image_id),
VmType: pulumi.Any(_var.Vm_type),
KeypairName: pulumi.Any(_var.Keypair_name),
SecurityGroupIds: pulumi.StringArray{
_var.Security_group_id,
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var publicIp01 = new Outscale.PublicIp("publicIp01");
var vm01 = new Outscale.Vm("vm01", new()
{
ImageId = @var.Image_id,
VmType = @var.Vm_type,
KeypairName = @var.Keypair_name,
SecurityGroupIds = new[]
{
@var.Security_group_id,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.PublicIp;
import com.pulumi.outscale.Vm;
import com.pulumi.outscale.VmArgs;
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 publicIp01 = new PublicIp("publicIp01");
var vm01 = new Vm("vm01", VmArgs.builder()
.imageId(var_.image_id())
.vmType(var_.vm_type())
.keypairName(var_.keypair_name())
.securityGroupIds(var_.security_group_id())
.build());
}
}
resources:
publicIp01:
type: outscale:PublicIp
vm01:
type: outscale:Vm
properties:
imageId: ${var.image_id}
vmType: ${var.vm_type}
keypairName: ${var.keypair_name}
securityGroupIds:
- ${var.security_group_id}
Link a public IP address to a VM
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const publicIpLink01 = new outscale.PublicIpLink("publicIpLink01", {
vmId: outscale_vm.vm01.vm_id,
publicIp: outscale_public_ip.public_ip01.public_ip,
});
import pulumi
import pulumi_outscale as outscale
public_ip_link01 = outscale.PublicIpLink("publicIpLink01",
vm_id=outscale_vm["vm01"]["vm_id"],
public_ip=outscale_public_ip["public_ip01"]["public_ip"])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := outscale.NewPublicIpLink(ctx, "publicIpLink01", &outscale.PublicIpLinkArgs{
VmId: pulumi.Any(outscale_vm.Vm01.Vm_id),
PublicIp: pulumi.Any(outscale_public_ip.Public_ip01.Public_ip),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Outscale = Pulumi.Outscale;
return await Deployment.RunAsync(() =>
{
var publicIpLink01 = new Outscale.PublicIpLink("publicIpLink01", new()
{
VmId = outscale_vm.Vm01.Vm_id,
PublicIp = outscale_public_ip.Public_ip01.Public_ip,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.PublicIpLink;
import com.pulumi.outscale.PublicIpLinkArgs;
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 publicIpLink01 = new PublicIpLink("publicIpLink01", PublicIpLinkArgs.builder()
.vmId(outscale_vm.vm01().vm_id())
.publicIp(outscale_public_ip.public_ip01().public_ip())
.build());
}
}
resources:
publicIpLink01:
type: outscale:PublicIpLink
properties:
vmId: ${outscale_vm.vm01.vm_id}
publicIp: ${outscale_public_ip.public_ip01.public_ip}
Create PublicIpLink Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new PublicIpLink(name: string, args?: PublicIpLinkArgs, opts?: CustomResourceOptions);
@overload
def PublicIpLink(resource_name: str,
args: Optional[PublicIpLinkArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def PublicIpLink(resource_name: str,
opts: Optional[ResourceOptions] = None,
allow_relink: Optional[bool] = None,
nic_id: Optional[str] = None,
private_ip: Optional[str] = None,
public_ip: Optional[str] = None,
public_ip_id: Optional[str] = None,
public_ip_link_id: Optional[str] = None,
timeouts: Optional[PublicIpLinkTimeoutsArgs] = None,
vm_id: Optional[str] = None)
func NewPublicIpLink(ctx *Context, name string, args *PublicIpLinkArgs, opts ...ResourceOption) (*PublicIpLink, error)
public PublicIpLink(string name, PublicIpLinkArgs? args = null, CustomResourceOptions? opts = null)
public PublicIpLink(String name, PublicIpLinkArgs args)
public PublicIpLink(String name, PublicIpLinkArgs args, CustomResourceOptions options)
type: outscale:PublicIpLink
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 PublicIpLinkArgs
- 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 PublicIpLinkArgs
- 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 PublicIpLinkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args PublicIpLinkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args PublicIpLinkArgs
- 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 publicIpLinkResource = new Outscale.PublicIpLink("publicIpLinkResource", new()
{
AllowRelink = false,
NicId = "string",
PrivateIp = "string",
PublicIp = "string",
PublicIpId = "string",
PublicIpLinkId = "string",
Timeouts = new Outscale.Inputs.PublicIpLinkTimeoutsArgs
{
Create = "string",
Delete = "string",
},
VmId = "string",
});
example, err := outscale.NewPublicIpLink(ctx, "publicIpLinkResource", &outscale.PublicIpLinkArgs{
AllowRelink: pulumi.Bool(false),
NicId: pulumi.String("string"),
PrivateIp: pulumi.String("string"),
PublicIp: pulumi.String("string"),
PublicIpId: pulumi.String("string"),
PublicIpLinkId: pulumi.String("string"),
Timeouts: &.PublicIpLinkTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
VmId: pulumi.String("string"),
})
var publicIpLinkResource = new PublicIpLink("publicIpLinkResource", PublicIpLinkArgs.builder()
.allowRelink(false)
.nicId("string")
.privateIp("string")
.publicIp("string")
.publicIpId("string")
.publicIpLinkId("string")
.timeouts(PublicIpLinkTimeoutsArgs.builder()
.create("string")
.delete("string")
.build())
.vmId("string")
.build());
public_ip_link_resource = outscale.PublicIpLink("publicIpLinkResource",
allow_relink=False,
nic_id="string",
private_ip="string",
public_ip="string",
public_ip_id="string",
public_ip_link_id="string",
timeouts={
"create": "string",
"delete": "string",
},
vm_id="string")
const publicIpLinkResource = new outscale.PublicIpLink("publicIpLinkResource", {
allowRelink: false,
nicId: "string",
privateIp: "string",
publicIp: "string",
publicIpId: "string",
publicIpLinkId: "string",
timeouts: {
create: "string",
"delete": "string",
},
vmId: "string",
});
type: outscale:PublicIpLink
properties:
allowRelink: false
nicId: string
privateIp: string
publicIp: string
publicIpId: string
publicIpLinkId: string
timeouts:
create: string
delete: string
vmId: string
PublicIpLink 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 PublicIpLink resource accepts the following input properties:
- Allow
Relink bool - If true, allows the public IP to be associated with the VM or NIC that you specify even if it is already associated with another VM or NIC. If false, prevents the public IP from being associated with the VM or NIC that you specify if it is already associated with another VM or NIC. (By default, true in the public Cloud, false in a Net.)
- Nic
Id string - (Net only) The ID of the NIC. This parameter is required if the VM has more than one NIC attached. Otherwise, you need to specify the
vm_id
parameter instead. You cannot specify both parameters at the same time. - Private
Ip string - (Net only) The primary or secondary private IP of the specified NIC. By default, the primary private IP.
- Public
Ip string - The public IP. This parameter is required unless you use the
public_ip_id
parameter. - Public
Ip stringId - The allocation ID of the public IP. This parameter is required unless you use the
public_ip
parameter. - Public
Ip stringLink Id - Timeouts
Public
Ip Link Timeouts - Vm
Id string - The ID of the VM.- In the public Cloud, this parameter is required.- In a Net, this parameter is required if the VM has only one NIC. Otherwise, you need to specify the
nic_id
parameter instead. You cannot specify both parameters at the same time.
- Allow
Relink bool - If true, allows the public IP to be associated with the VM or NIC that you specify even if it is already associated with another VM or NIC. If false, prevents the public IP from being associated with the VM or NIC that you specify if it is already associated with another VM or NIC. (By default, true in the public Cloud, false in a Net.)
- Nic
Id string - (Net only) The ID of the NIC. This parameter is required if the VM has more than one NIC attached. Otherwise, you need to specify the
vm_id
parameter instead. You cannot specify both parameters at the same time. - Private
Ip string - (Net only) The primary or secondary private IP of the specified NIC. By default, the primary private IP.
- Public
Ip string - The public IP. This parameter is required unless you use the
public_ip_id
parameter. - Public
Ip stringId - The allocation ID of the public IP. This parameter is required unless you use the
public_ip
parameter. - Public
Ip stringLink Id - Timeouts
Public
Ip Link Timeouts Args - Vm
Id string - The ID of the VM.- In the public Cloud, this parameter is required.- In a Net, this parameter is required if the VM has only one NIC. Otherwise, you need to specify the
nic_id
parameter instead. You cannot specify both parameters at the same time.
- allow
Relink Boolean - If true, allows the public IP to be associated with the VM or NIC that you specify even if it is already associated with another VM or NIC. If false, prevents the public IP from being associated with the VM or NIC that you specify if it is already associated with another VM or NIC. (By default, true in the public Cloud, false in a Net.)
- nic
Id String - (Net only) The ID of the NIC. This parameter is required if the VM has more than one NIC attached. Otherwise, you need to specify the
vm_id
parameter instead. You cannot specify both parameters at the same time. - private
Ip String - (Net only) The primary or secondary private IP of the specified NIC. By default, the primary private IP.
- public
Ip String - The public IP. This parameter is required unless you use the
public_ip_id
parameter. - public
Ip StringId - The allocation ID of the public IP. This parameter is required unless you use the
public_ip
parameter. - public
Ip StringLink Id - timeouts
Public
Ip Link Timeouts - vm
Id String - The ID of the VM.- In the public Cloud, this parameter is required.- In a Net, this parameter is required if the VM has only one NIC. Otherwise, you need to specify the
nic_id
parameter instead. You cannot specify both parameters at the same time.
- allow
Relink boolean - If true, allows the public IP to be associated with the VM or NIC that you specify even if it is already associated with another VM or NIC. If false, prevents the public IP from being associated with the VM or NIC that you specify if it is already associated with another VM or NIC. (By default, true in the public Cloud, false in a Net.)
- nic
Id string - (Net only) The ID of the NIC. This parameter is required if the VM has more than one NIC attached. Otherwise, you need to specify the
vm_id
parameter instead. You cannot specify both parameters at the same time. - private
Ip string - (Net only) The primary or secondary private IP of the specified NIC. By default, the primary private IP.
- public
Ip string - The public IP. This parameter is required unless you use the
public_ip_id
parameter. - public
Ip stringId - The allocation ID of the public IP. This parameter is required unless you use the
public_ip
parameter. - public
Ip stringLink Id - timeouts
Public
Ip Link Timeouts - vm
Id string - The ID of the VM.- In the public Cloud, this parameter is required.- In a Net, this parameter is required if the VM has only one NIC. Otherwise, you need to specify the
nic_id
parameter instead. You cannot specify both parameters at the same time.
- allow_
relink bool - If true, allows the public IP to be associated with the VM or NIC that you specify even if it is already associated with another VM or NIC. If false, prevents the public IP from being associated with the VM or NIC that you specify if it is already associated with another VM or NIC. (By default, true in the public Cloud, false in a Net.)
- nic_
id str - (Net only) The ID of the NIC. This parameter is required if the VM has more than one NIC attached. Otherwise, you need to specify the
vm_id
parameter instead. You cannot specify both parameters at the same time. - private_
ip str - (Net only) The primary or secondary private IP of the specified NIC. By default, the primary private IP.
- public_
ip str - The public IP. This parameter is required unless you use the
public_ip_id
parameter. - public_
ip_ strid - The allocation ID of the public IP. This parameter is required unless you use the
public_ip
parameter. - public_
ip_ strlink_ id - timeouts
Public
Ip Link Timeouts Args - vm_
id str - The ID of the VM.- In the public Cloud, this parameter is required.- In a Net, this parameter is required if the VM has only one NIC. Otherwise, you need to specify the
nic_id
parameter instead. You cannot specify both parameters at the same time.
- allow
Relink Boolean - If true, allows the public IP to be associated with the VM or NIC that you specify even if it is already associated with another VM or NIC. If false, prevents the public IP from being associated with the VM or NIC that you specify if it is already associated with another VM or NIC. (By default, true in the public Cloud, false in a Net.)
- nic
Id String - (Net only) The ID of the NIC. This parameter is required if the VM has more than one NIC attached. Otherwise, you need to specify the
vm_id
parameter instead. You cannot specify both parameters at the same time. - private
Ip String - (Net only) The primary or secondary private IP of the specified NIC. By default, the primary private IP.
- public
Ip String - The public IP. This parameter is required unless you use the
public_ip_id
parameter. - public
Ip StringId - The allocation ID of the public IP. This parameter is required unless you use the
public_ip
parameter. - public
Ip StringLink Id - timeouts Property Map
- vm
Id String - The ID of the VM.- In the public Cloud, this parameter is required.- In a Net, this parameter is required if the VM has only one NIC. Otherwise, you need to specify the
nic_id
parameter instead. You cannot specify both parameters at the same time.
Outputs
All input properties are implicitly available as output properties. Additionally, the PublicIpLink resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Link
Public stringIp Id - (Net only) The ID representing the association of the public IP with the VM or the NIC.
- Nic
Account stringId - Request
Id string - List<Public
Ip Link Tag>
- Id string
- The provider-assigned unique ID for this managed resource.
- Link
Public stringIp Id - (Net only) The ID representing the association of the public IP with the VM or the NIC.
- Nic
Account stringId - Request
Id string - []Public
Ip Link Tag
- id String
- The provider-assigned unique ID for this managed resource.
- link
Public StringIp Id - (Net only) The ID representing the association of the public IP with the VM or the NIC.
- nic
Account StringId - request
Id String - List<Public
Ip Link Tag>
- id string
- The provider-assigned unique ID for this managed resource.
- link
Public stringIp Id - (Net only) The ID representing the association of the public IP with the VM or the NIC.
- nic
Account stringId - request
Id string - Public
Ip Link Tag[]
- id str
- The provider-assigned unique ID for this managed resource.
- link_
public_ strip_ id - (Net only) The ID representing the association of the public IP with the VM or the NIC.
- nic_
account_ strid - request_
id str - Sequence[Public
Ip Link Tag]
- id String
- The provider-assigned unique ID for this managed resource.
- link
Public StringIp Id - (Net only) The ID representing the association of the public IP with the VM or the NIC.
- nic
Account StringId - request
Id String - List<Property Map>
Look up Existing PublicIpLink Resource
Get an existing PublicIpLink 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?: PublicIpLinkState, opts?: CustomResourceOptions): PublicIpLink
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
allow_relink: Optional[bool] = None,
link_public_ip_id: Optional[str] = None,
nic_account_id: Optional[str] = None,
nic_id: Optional[str] = None,
private_ip: Optional[str] = None,
public_ip: Optional[str] = None,
public_ip_id: Optional[str] = None,
public_ip_link_id: Optional[str] = None,
request_id: Optional[str] = None,
tags: Optional[Sequence[PublicIpLinkTagArgs]] = None,
timeouts: Optional[PublicIpLinkTimeoutsArgs] = None,
vm_id: Optional[str] = None) -> PublicIpLink
func GetPublicIpLink(ctx *Context, name string, id IDInput, state *PublicIpLinkState, opts ...ResourceOption) (*PublicIpLink, error)
public static PublicIpLink Get(string name, Input<string> id, PublicIpLinkState? state, CustomResourceOptions? opts = null)
public static PublicIpLink get(String name, Output<String> id, PublicIpLinkState state, CustomResourceOptions options)
resources: _: type: outscale:PublicIpLink get: id: ${id}
- 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.
- Allow
Relink bool - If true, allows the public IP to be associated with the VM or NIC that you specify even if it is already associated with another VM or NIC. If false, prevents the public IP from being associated with the VM or NIC that you specify if it is already associated with another VM or NIC. (By default, true in the public Cloud, false in a Net.)
- Link
Public stringIp Id - (Net only) The ID representing the association of the public IP with the VM or the NIC.
- Nic
Account stringId - Nic
Id string - (Net only) The ID of the NIC. This parameter is required if the VM has more than one NIC attached. Otherwise, you need to specify the
vm_id
parameter instead. You cannot specify both parameters at the same time. - Private
Ip string - (Net only) The primary or secondary private IP of the specified NIC. By default, the primary private IP.
- Public
Ip string - The public IP. This parameter is required unless you use the
public_ip_id
parameter. - Public
Ip stringId - The allocation ID of the public IP. This parameter is required unless you use the
public_ip
parameter. - Public
Ip stringLink Id - Request
Id string - List<Public
Ip Link Tag> - Timeouts
Public
Ip Link Timeouts - Vm
Id string - The ID of the VM.- In the public Cloud, this parameter is required.- In a Net, this parameter is required if the VM has only one NIC. Otherwise, you need to specify the
nic_id
parameter instead. You cannot specify both parameters at the same time.
- Allow
Relink bool - If true, allows the public IP to be associated with the VM or NIC that you specify even if it is already associated with another VM or NIC. If false, prevents the public IP from being associated with the VM or NIC that you specify if it is already associated with another VM or NIC. (By default, true in the public Cloud, false in a Net.)
- Link
Public stringIp Id - (Net only) The ID representing the association of the public IP with the VM or the NIC.
- Nic
Account stringId - Nic
Id string - (Net only) The ID of the NIC. This parameter is required if the VM has more than one NIC attached. Otherwise, you need to specify the
vm_id
parameter instead. You cannot specify both parameters at the same time. - Private
Ip string - (Net only) The primary or secondary private IP of the specified NIC. By default, the primary private IP.
- Public
Ip string - The public IP. This parameter is required unless you use the
public_ip_id
parameter. - Public
Ip stringId - The allocation ID of the public IP. This parameter is required unless you use the
public_ip
parameter. - Public
Ip stringLink Id - Request
Id string - []Public
Ip Link Tag Args - Timeouts
Public
Ip Link Timeouts Args - Vm
Id string - The ID of the VM.- In the public Cloud, this parameter is required.- In a Net, this parameter is required if the VM has only one NIC. Otherwise, you need to specify the
nic_id
parameter instead. You cannot specify both parameters at the same time.
- allow
Relink Boolean - If true, allows the public IP to be associated with the VM or NIC that you specify even if it is already associated with another VM or NIC. If false, prevents the public IP from being associated with the VM or NIC that you specify if it is already associated with another VM or NIC. (By default, true in the public Cloud, false in a Net.)
- link
Public StringIp Id - (Net only) The ID representing the association of the public IP with the VM or the NIC.
- nic
Account StringId - nic
Id String - (Net only) The ID of the NIC. This parameter is required if the VM has more than one NIC attached. Otherwise, you need to specify the
vm_id
parameter instead. You cannot specify both parameters at the same time. - private
Ip String - (Net only) The primary or secondary private IP of the specified NIC. By default, the primary private IP.
- public
Ip String - The public IP. This parameter is required unless you use the
public_ip_id
parameter. - public
Ip StringId - The allocation ID of the public IP. This parameter is required unless you use the
public_ip
parameter. - public
Ip StringLink Id - request
Id String - List<Public
Ip Link Tag> - timeouts
Public
Ip Link Timeouts - vm
Id String - The ID of the VM.- In the public Cloud, this parameter is required.- In a Net, this parameter is required if the VM has only one NIC. Otherwise, you need to specify the
nic_id
parameter instead. You cannot specify both parameters at the same time.
- allow
Relink boolean - If true, allows the public IP to be associated with the VM or NIC that you specify even if it is already associated with another VM or NIC. If false, prevents the public IP from being associated with the VM or NIC that you specify if it is already associated with another VM or NIC. (By default, true in the public Cloud, false in a Net.)
- link
Public stringIp Id - (Net only) The ID representing the association of the public IP with the VM or the NIC.
- nic
Account stringId - nic
Id string - (Net only) The ID of the NIC. This parameter is required if the VM has more than one NIC attached. Otherwise, you need to specify the
vm_id
parameter instead. You cannot specify both parameters at the same time. - private
Ip string - (Net only) The primary or secondary private IP of the specified NIC. By default, the primary private IP.
- public
Ip string - The public IP. This parameter is required unless you use the
public_ip_id
parameter. - public
Ip stringId - The allocation ID of the public IP. This parameter is required unless you use the
public_ip
parameter. - public
Ip stringLink Id - request
Id string - Public
Ip Link Tag[] - timeouts
Public
Ip Link Timeouts - vm
Id string - The ID of the VM.- In the public Cloud, this parameter is required.- In a Net, this parameter is required if the VM has only one NIC. Otherwise, you need to specify the
nic_id
parameter instead. You cannot specify both parameters at the same time.
- allow_
relink bool - If true, allows the public IP to be associated with the VM or NIC that you specify even if it is already associated with another VM or NIC. If false, prevents the public IP from being associated with the VM or NIC that you specify if it is already associated with another VM or NIC. (By default, true in the public Cloud, false in a Net.)
- link_
public_ strip_ id - (Net only) The ID representing the association of the public IP with the VM or the NIC.
- nic_
account_ strid - nic_
id str - (Net only) The ID of the NIC. This parameter is required if the VM has more than one NIC attached. Otherwise, you need to specify the
vm_id
parameter instead. You cannot specify both parameters at the same time. - private_
ip str - (Net only) The primary or secondary private IP of the specified NIC. By default, the primary private IP.
- public_
ip str - The public IP. This parameter is required unless you use the
public_ip_id
parameter. - public_
ip_ strid - The allocation ID of the public IP. This parameter is required unless you use the
public_ip
parameter. - public_
ip_ strlink_ id - request_
id str - Sequence[Public
Ip Link Tag Args] - timeouts
Public
Ip Link Timeouts Args - vm_
id str - The ID of the VM.- In the public Cloud, this parameter is required.- In a Net, this parameter is required if the VM has only one NIC. Otherwise, you need to specify the
nic_id
parameter instead. You cannot specify both parameters at the same time.
- allow
Relink Boolean - If true, allows the public IP to be associated with the VM or NIC that you specify even if it is already associated with another VM or NIC. If false, prevents the public IP from being associated with the VM or NIC that you specify if it is already associated with another VM or NIC. (By default, true in the public Cloud, false in a Net.)
- link
Public StringIp Id - (Net only) The ID representing the association of the public IP with the VM or the NIC.
- nic
Account StringId - nic
Id String - (Net only) The ID of the NIC. This parameter is required if the VM has more than one NIC attached. Otherwise, you need to specify the
vm_id
parameter instead. You cannot specify both parameters at the same time. - private
Ip String - (Net only) The primary or secondary private IP of the specified NIC. By default, the primary private IP.
- public
Ip String - The public IP. This parameter is required unless you use the
public_ip_id
parameter. - public
Ip StringId - The allocation ID of the public IP. This parameter is required unless you use the
public_ip
parameter. - public
Ip StringLink Id - request
Id String - List<Property Map>
- timeouts Property Map
- vm
Id String - The ID of the VM.- In the public Cloud, this parameter is required.- In a Net, this parameter is required if the VM has only one NIC. Otherwise, you need to specify the
nic_id
parameter instead. You cannot specify both parameters at the same time.
Supporting Types
PublicIpLinkTag, PublicIpLinkTagArgs
PublicIpLinkTimeouts, PublicIpLinkTimeoutsArgs
Import
A public IP link can be imported using the public IP or the public IP link ID. For example:
console
$ pulumi import outscale:index/publicIpLink:PublicIpLink ImportedPublicIpLink eipassoc-12345678
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.