outscale.VolumeLink
Explore with Pulumi AI
Manages a volume 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 volume01 = new outscale.Volume("volume01", {
subregionName: `${_var.region}a`,
size: 40,
});
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
volume01 = outscale.Volume("volume01",
subregion_name=f"{var['region']}a",
size=40)
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 (
"fmt"
"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.NewVolume(ctx, "volume01", &outscale.VolumeArgs{
SubregionName: pulumi.Sprintf("%va", _var.Region),
Size: pulumi.Float64(40),
})
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 volume01 = new Outscale.Volume("volume01", new()
{
SubregionName = $"{@var.Region}a",
Size = 40,
});
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.Volume;
import com.pulumi.outscale.VolumeArgs;
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 volume01 = new Volume("volume01", VolumeArgs.builder()
.subregionName(String.format("%sa", var_.region()))
.size(40)
.build());
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:
volume01:
type: outscale:Volume
properties:
subregionName: ${var.region}a
size: 40
vm01:
type: outscale:Vm
properties:
imageId: ${var.image_id}
vmType: ${var.vm_type}
keypairName: ${var.keypair_name}
securityGroupIds:
- ${var.security_group_id}
Link a volume to a VM
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const volumeLink01 = new outscale.VolumeLink("volumeLink01", {
deviceName: "/dev/xvdc",
volumeId: outscale_volume.volume01.id,
vmId: outscale_vm.vm01.id,
});
import pulumi
import pulumi_outscale as outscale
volume_link01 = outscale.VolumeLink("volumeLink01",
device_name="/dev/xvdc",
volume_id=outscale_volume["volume01"]["id"],
vm_id=outscale_vm["vm01"]["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.NewVolumeLink(ctx, "volumeLink01", &outscale.VolumeLinkArgs{
DeviceName: pulumi.String("/dev/xvdc"),
VolumeId: pulumi.Any(outscale_volume.Volume01.Id),
VmId: pulumi.Any(outscale_vm.Vm01.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 volumeLink01 = new Outscale.VolumeLink("volumeLink01", new()
{
DeviceName = "/dev/xvdc",
VolumeId = outscale_volume.Volume01.Id,
VmId = outscale_vm.Vm01.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.VolumeLink;
import com.pulumi.outscale.VolumeLinkArgs;
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 volumeLink01 = new VolumeLink("volumeLink01", VolumeLinkArgs.builder()
.deviceName("/dev/xvdc")
.volumeId(outscale_volume.volume01().id())
.vmId(outscale_vm.vm01().id())
.build());
}
}
resources:
volumeLink01:
type: outscale:VolumeLink
properties:
deviceName: /dev/xvdc
volumeId: ${outscale_volume.volume01.id}
vmId: ${outscale_vm.vm01.id}
Create VolumeLink Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VolumeLink(name: string, args: VolumeLinkArgs, opts?: CustomResourceOptions);
@overload
def VolumeLink(resource_name: str,
args: VolumeLinkArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VolumeLink(resource_name: str,
opts: Optional[ResourceOptions] = None,
device_name: Optional[str] = None,
vm_id: Optional[str] = None,
volume_id: Optional[str] = None,
delete_on_vm_termination: Optional[bool] = None,
force_unlink: Optional[bool] = None,
timeouts: Optional[VolumeLinkTimeoutsArgs] = None,
volume_link_id: Optional[str] = None)
func NewVolumeLink(ctx *Context, name string, args VolumeLinkArgs, opts ...ResourceOption) (*VolumeLink, error)
public VolumeLink(string name, VolumeLinkArgs args, CustomResourceOptions? opts = null)
public VolumeLink(String name, VolumeLinkArgs args)
public VolumeLink(String name, VolumeLinkArgs args, CustomResourceOptions options)
type: outscale:VolumeLink
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 VolumeLinkArgs
- 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 VolumeLinkArgs
- 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 VolumeLinkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeLinkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeLinkArgs
- 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 volumeLinkResource = new Outscale.VolumeLink("volumeLinkResource", new()
{
DeviceName = "string",
VmId = "string",
VolumeId = "string",
DeleteOnVmTermination = false,
ForceUnlink = false,
Timeouts = new Outscale.Inputs.VolumeLinkTimeoutsArgs
{
Create = "string",
Delete = "string",
},
VolumeLinkId = "string",
});
example, err := outscale.NewVolumeLink(ctx, "volumeLinkResource", &outscale.VolumeLinkArgs{
DeviceName: pulumi.String("string"),
VmId: pulumi.String("string"),
VolumeId: pulumi.String("string"),
DeleteOnVmTermination: pulumi.Bool(false),
ForceUnlink: pulumi.Bool(false),
Timeouts: &.VolumeLinkTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
},
VolumeLinkId: pulumi.String("string"),
})
var volumeLinkResource = new VolumeLink("volumeLinkResource", VolumeLinkArgs.builder()
.deviceName("string")
.vmId("string")
.volumeId("string")
.deleteOnVmTermination(false)
.forceUnlink(false)
.timeouts(VolumeLinkTimeoutsArgs.builder()
.create("string")
.delete("string")
.build())
.volumeLinkId("string")
.build());
volume_link_resource = outscale.VolumeLink("volumeLinkResource",
device_name="string",
vm_id="string",
volume_id="string",
delete_on_vm_termination=False,
force_unlink=False,
timeouts={
"create": "string",
"delete": "string",
},
volume_link_id="string")
const volumeLinkResource = new outscale.VolumeLink("volumeLinkResource", {
deviceName: "string",
vmId: "string",
volumeId: "string",
deleteOnVmTermination: false,
forceUnlink: false,
timeouts: {
create: "string",
"delete": "string",
},
volumeLinkId: "string",
});
type: outscale:VolumeLink
properties:
deleteOnVmTermination: false
deviceName: string
forceUnlink: false
timeouts:
create: string
delete: string
vmId: string
volumeId: string
volumeLinkId: string
VolumeLink 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 VolumeLink resource accepts the following input properties:
- Device
Name string - The name of the device. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - Vm
Id string - The ID of the VM you want to attach the volume to.
- Volume
Id string - The ID of the volume you want to attach.
- Delete
On boolVm Termination - Force
Unlink bool - Timeouts
Volume
Link Timeouts - Volume
Link stringId
- Device
Name string - The name of the device. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - Vm
Id string - The ID of the VM you want to attach the volume to.
- Volume
Id string - The ID of the volume you want to attach.
- Delete
On boolVm Termination - Force
Unlink bool - Timeouts
Volume
Link Timeouts Args - Volume
Link stringId
- device
Name String - The name of the device. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - vm
Id String - The ID of the VM you want to attach the volume to.
- volume
Id String - The ID of the volume you want to attach.
- delete
On BooleanVm Termination - force
Unlink Boolean - timeouts
Volume
Link Timeouts - volume
Link StringId
- device
Name string - The name of the device. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - vm
Id string - The ID of the VM you want to attach the volume to.
- volume
Id string - The ID of the volume you want to attach.
- delete
On booleanVm Termination - force
Unlink boolean - timeouts
Volume
Link Timeouts - volume
Link stringId
- device_
name str - The name of the device. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - vm_
id str - The ID of the VM you want to attach the volume to.
- volume_
id str - The ID of the volume you want to attach.
- delete_
on_ boolvm_ termination - force_
unlink bool - timeouts
Volume
Link Timeouts Args - volume_
link_ strid
- device
Name String - The name of the device. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - vm
Id String - The ID of the VM you want to attach the volume to.
- volume
Id String - The ID of the volume you want to attach.
- delete
On BooleanVm Termination - force
Unlink Boolean - timeouts Property Map
- volume
Link StringId
Outputs
All input properties are implicitly available as output properties. Additionally, the VolumeLink resource produces the following output properties:
- id str
- The provider-assigned unique ID for this managed resource.
- request_
id str - state str
- The state of the attachment of the volume (
attaching
|detaching
|attached
|detached
).
Look up Existing VolumeLink Resource
Get an existing VolumeLink 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?: VolumeLinkState, opts?: CustomResourceOptions): VolumeLink
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
delete_on_vm_termination: Optional[bool] = None,
device_name: Optional[str] = None,
force_unlink: Optional[bool] = None,
request_id: Optional[str] = None,
state: Optional[str] = None,
timeouts: Optional[VolumeLinkTimeoutsArgs] = None,
vm_id: Optional[str] = None,
volume_id: Optional[str] = None,
volume_link_id: Optional[str] = None) -> VolumeLink
func GetVolumeLink(ctx *Context, name string, id IDInput, state *VolumeLinkState, opts ...ResourceOption) (*VolumeLink, error)
public static VolumeLink Get(string name, Input<string> id, VolumeLinkState? state, CustomResourceOptions? opts = null)
public static VolumeLink get(String name, Output<String> id, VolumeLinkState state, CustomResourceOptions options)
resources: _: type: outscale:VolumeLink 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.
- Delete
On boolVm Termination - Device
Name string - The name of the device. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - Force
Unlink bool - Request
Id string - State string
- The state of the attachment of the volume (
attaching
|detaching
|attached
|detached
). - Timeouts
Volume
Link Timeouts - Vm
Id string - The ID of the VM you want to attach the volume to.
- Volume
Id string - The ID of the volume you want to attach.
- Volume
Link stringId
- Delete
On boolVm Termination - Device
Name string - The name of the device. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - Force
Unlink bool - Request
Id string - State string
- The state of the attachment of the volume (
attaching
|detaching
|attached
|detached
). - Timeouts
Volume
Link Timeouts Args - Vm
Id string - The ID of the VM you want to attach the volume to.
- Volume
Id string - The ID of the volume you want to attach.
- Volume
Link stringId
- delete
On BooleanVm Termination - device
Name String - The name of the device. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - force
Unlink Boolean - request
Id String - state String
- The state of the attachment of the volume (
attaching
|detaching
|attached
|detached
). - timeouts
Volume
Link Timeouts - vm
Id String - The ID of the VM you want to attach the volume to.
- volume
Id String - The ID of the volume you want to attach.
- volume
Link StringId
- delete
On booleanVm Termination - device
Name string - The name of the device. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - force
Unlink boolean - request
Id string - state string
- The state of the attachment of the volume (
attaching
|detaching
|attached
|detached
). - timeouts
Volume
Link Timeouts - vm
Id string - The ID of the VM you want to attach the volume to.
- volume
Id string - The ID of the volume you want to attach.
- volume
Link stringId
- delete_
on_ boolvm_ termination - device_
name str - The name of the device. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - force_
unlink bool - request_
id str - state str
- The state of the attachment of the volume (
attaching
|detaching
|attached
|detached
). - timeouts
Volume
Link Timeouts Args - vm_
id str - The ID of the VM you want to attach the volume to.
- volume_
id str - The ID of the volume you want to attach.
- volume_
link_ strid
- delete
On BooleanVm Termination - device
Name String - The name of the device. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - force
Unlink Boolean - request
Id String - state String
- The state of the attachment of the volume (
attaching
|detaching
|attached
|detached
). - timeouts Property Map
- vm
Id String - The ID of the VM you want to attach the volume to.
- volume
Id String - The ID of the volume you want to attach.
- volume
Link StringId
Supporting Types
VolumeLinkTimeouts, VolumeLinkTimeoutsArgs
Import
A volume link can be imported using a volume ID. For example:
console
$ pulumi import outscale:index/volumeLink:VolumeLink ImportedVolumeLink vol-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.