outscale.Vm
Explore with Pulumi AI
Manages a virtual machine (VM).
Important Consider using the
primary_nic
argument if you plan to use theoutscale.NicLink
resource.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Optional resource
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const keypair01 = new outscale.Keypair("keypair01", {keypairName: "terraform-keypair-for-vm"});
import pulumi
import pulumi_outscale as outscale
keypair01 = outscale.Keypair("keypair01", keypair_name="terraform-keypair-for-vm")
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.NewKeypair(ctx, "keypair01", &outscale.KeypairArgs{
KeypairName: pulumi.String("terraform-keypair-for-vm"),
})
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 keypair01 = new Outscale.Keypair("keypair01", new()
{
KeypairName = "terraform-keypair-for-vm",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Keypair;
import com.pulumi.outscale.KeypairArgs;
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 keypair01 = new Keypair("keypair01", KeypairArgs.builder()
.keypairName("terraform-keypair-for-vm")
.build());
}
}
resources:
keypair01:
type: outscale:Keypair
properties:
keypairName: terraform-keypair-for-vm
Create a VM with block device mappings
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const securityGroup01SecurityGroup = new outscale.SecurityGroup("securityGroup01SecurityGroup", {
description: "vm security group",
securityGroupName: "vm_security_group1",
});
const vm02Vm = new outscale.Vm("vm02Vm", {
imageId: _var.image_id,
vmType: _var.vm_type,
keypairName: _var.keypair_name,
securityGroupIds: [securityGroup01SecurityGroup.securityGroupId],
blockDeviceMappings: [
{
deviceName: "/dev/sda1",
bsu: {
volumeSize: 15,
volumeType: "gp2",
snapshotId: _var.snapshot_id,
},
},
{
deviceName: "/dev/sdb",
bsu: {
volumeSize: 22,
volumeType: "io1",
iops: 150,
deleteOnVmDeletion: true,
},
},
],
});
const securityGroup01Index_securityGroupSecurityGroup = new outscale.SecurityGroup("securityGroup01Index/securityGroupSecurityGroup", {
description: "vm security group",
securityGroupName: "vm_security_group1",
});
const vm02Index_vmVm = new outscale.Vm("vm02Index/vmVm", {
imageId: _var.image_id,
vmType: _var.vm_type,
keypairName: _var.keypair_name,
securityGroupIds: [securityGroup01SecurityGroup.securityGroupId],
blockDeviceMappings: [{
deviceName: "/dev/sdb",
bsu: {
volumeSize: 30,
volumeType: "gp2",
snapshotId: outscale_snapshot.snapshot.id,
deleteOnVmDeletion: false,
tags: [{
key: "Name",
value: "bsu-tags-gp2",
}],
},
}],
});
import pulumi
import pulumi_outscale as outscale
security_group01_security_group = outscale.SecurityGroup("securityGroup01SecurityGroup",
description="vm security group",
security_group_name="vm_security_group1")
vm02_vm = outscale.Vm("vm02Vm",
image_id=var["image_id"],
vm_type=var["vm_type"],
keypair_name=var["keypair_name"],
security_group_ids=[security_group01_security_group.security_group_id],
block_device_mappings=[
{
"device_name": "/dev/sda1",
"bsu": {
"volume_size": 15,
"volume_type": "gp2",
"snapshot_id": var["snapshot_id"],
},
},
{
"device_name": "/dev/sdb",
"bsu": {
"volume_size": 22,
"volume_type": "io1",
"iops": 150,
"delete_on_vm_deletion": True,
},
},
])
security_group01_index_security_group_security_group = outscale.SecurityGroup("securityGroup01Index/securityGroupSecurityGroup",
description="vm security group",
security_group_name="vm_security_group1")
vm02_index_vm_vm = outscale.Vm("vm02Index/vmVm",
image_id=var["image_id"],
vm_type=var["vm_type"],
keypair_name=var["keypair_name"],
security_group_ids=[security_group01_security_group.security_group_id],
block_device_mappings=[{
"device_name": "/dev/sdb",
"bsu": {
"volume_size": 30,
"volume_type": "gp2",
"snapshot_id": outscale_snapshot["snapshot"]["id"],
"delete_on_vm_deletion": False,
"tags": [{
"key": "Name",
"value": "bsu-tags-gp2",
}],
},
}])
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 {
securityGroup01SecurityGroup, err := outscale.NewSecurityGroup(ctx, "securityGroup01SecurityGroup", &outscale.SecurityGroupArgs{
Description: pulumi.String("vm security group"),
SecurityGroupName: pulumi.String("vm_security_group1"),
})
if err != nil {
return err
}
_, err = outscale.NewVm(ctx, "vm02Vm", &outscale.VmArgs{
ImageId: pulumi.Any(_var.Image_id),
VmType: pulumi.Any(_var.Vm_type),
KeypairName: pulumi.Any(_var.Keypair_name),
SecurityGroupIds: pulumi.StringArray{
securityGroup01SecurityGroup.SecurityGroupId,
},
BlockDeviceMappings: outscale.VmBlockDeviceMappingArray{
&outscale.VmBlockDeviceMappingArgs{
DeviceName: pulumi.String("/dev/sda1"),
Bsu: &outscale.VmBlockDeviceMappingBsuArgs{
VolumeSize: pulumi.Float64(15),
VolumeType: pulumi.String("gp2"),
SnapshotId: pulumi.Any(_var.Snapshot_id),
},
},
&outscale.VmBlockDeviceMappingArgs{
DeviceName: pulumi.String("/dev/sdb"),
Bsu: &outscale.VmBlockDeviceMappingBsuArgs{
VolumeSize: pulumi.Float64(22),
VolumeType: pulumi.String("io1"),
Iops: pulumi.Float64(150),
DeleteOnVmDeletion: pulumi.Bool(true),
},
},
},
})
if err != nil {
return err
}
_, err = outscale.NewSecurityGroup(ctx, "securityGroup01Index/securityGroupSecurityGroup", &outscale.SecurityGroupArgs{
Description: pulumi.String("vm security group"),
SecurityGroupName: pulumi.String("vm_security_group1"),
})
if err != nil {
return err
}
_, err = outscale.NewVm(ctx, "vm02Index/vmVm", &outscale.VmArgs{
ImageId: pulumi.Any(_var.Image_id),
VmType: pulumi.Any(_var.Vm_type),
KeypairName: pulumi.Any(_var.Keypair_name),
SecurityGroupIds: pulumi.StringArray{
securityGroup01SecurityGroup.SecurityGroupId,
},
BlockDeviceMappings: outscale.VmBlockDeviceMappingArray{
&outscale.VmBlockDeviceMappingArgs{
DeviceName: pulumi.String("/dev/sdb"),
Bsu: &outscale.VmBlockDeviceMappingBsuArgs{
VolumeSize: pulumi.Float64(30),
VolumeType: pulumi.String("gp2"),
SnapshotId: pulumi.Any(outscale_snapshot.Snapshot.Id),
DeleteOnVmDeletion: pulumi.Bool(false),
Tags: outscale.VmBlockDeviceMappingBsuTagArray{
&outscale.VmBlockDeviceMappingBsuTagArgs{
Key: pulumi.String("Name"),
Value: pulumi.String("bsu-tags-gp2"),
},
},
},
},
},
})
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 securityGroup01SecurityGroup = new Outscale.SecurityGroup("securityGroup01SecurityGroup", new()
{
Description = "vm security group",
SecurityGroupName = "vm_security_group1",
});
var vm02Vm = new Outscale.Vm("vm02Vm", new()
{
ImageId = @var.Image_id,
VmType = @var.Vm_type,
KeypairName = @var.Keypair_name,
SecurityGroupIds = new[]
{
securityGroup01SecurityGroup.SecurityGroupId,
},
BlockDeviceMappings = new[]
{
new Outscale.Inputs.VmBlockDeviceMappingArgs
{
DeviceName = "/dev/sda1",
Bsu = new Outscale.Inputs.VmBlockDeviceMappingBsuArgs
{
VolumeSize = 15,
VolumeType = "gp2",
SnapshotId = @var.Snapshot_id,
},
},
new Outscale.Inputs.VmBlockDeviceMappingArgs
{
DeviceName = "/dev/sdb",
Bsu = new Outscale.Inputs.VmBlockDeviceMappingBsuArgs
{
VolumeSize = 22,
VolumeType = "io1",
Iops = 150,
DeleteOnVmDeletion = true,
},
},
},
});
var securityGroup01Index_securityGroupSecurityGroup = new Outscale.SecurityGroup("securityGroup01Index/securityGroupSecurityGroup", new()
{
Description = "vm security group",
SecurityGroupName = "vm_security_group1",
});
var vm02Index_vmVm = new Outscale.Vm("vm02Index/vmVm", new()
{
ImageId = @var.Image_id,
VmType = @var.Vm_type,
KeypairName = @var.Keypair_name,
SecurityGroupIds = new[]
{
securityGroup01SecurityGroup.SecurityGroupId,
},
BlockDeviceMappings = new[]
{
new Outscale.Inputs.VmBlockDeviceMappingArgs
{
DeviceName = "/dev/sdb",
Bsu = new Outscale.Inputs.VmBlockDeviceMappingBsuArgs
{
VolumeSize = 30,
VolumeType = "gp2",
SnapshotId = outscale_snapshot.Snapshot.Id,
DeleteOnVmDeletion = false,
Tags = new[]
{
new Outscale.Inputs.VmBlockDeviceMappingBsuTagArgs
{
Key = "Name",
Value = "bsu-tags-gp2",
},
},
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.SecurityGroup;
import com.pulumi.outscale.SecurityGroupArgs;
import com.pulumi.outscale.Vm;
import com.pulumi.outscale.VmArgs;
import com.pulumi.outscale.inputs.VmBlockDeviceMappingArgs;
import com.pulumi.outscale.inputs.VmBlockDeviceMappingBsuArgs;
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 securityGroup01SecurityGroup = new SecurityGroup("securityGroup01SecurityGroup", SecurityGroupArgs.builder()
.description("vm security group")
.securityGroupName("vm_security_group1")
.build());
var vm02Vm = new Vm("vm02Vm", VmArgs.builder()
.imageId(var_.image_id())
.vmType(var_.vm_type())
.keypairName(var_.keypair_name())
.securityGroupIds(securityGroup01SecurityGroup.securityGroupId())
.blockDeviceMappings(
VmBlockDeviceMappingArgs.builder()
.deviceName("/dev/sda1")
.bsu(VmBlockDeviceMappingBsuArgs.builder()
.volumeSize(15)
.volumeType("gp2")
.snapshotId(var_.snapshot_id())
.build())
.build(),
VmBlockDeviceMappingArgs.builder()
.deviceName("/dev/sdb")
.bsu(VmBlockDeviceMappingBsuArgs.builder()
.volumeSize(22)
.volumeType("io1")
.iops(150)
.deleteOnVmDeletion(true)
.build())
.build())
.build());
var securityGroup01Index_securityGroupSecurityGroup = new SecurityGroup("securityGroup01Index/securityGroupSecurityGroup", SecurityGroupArgs.builder()
.description("vm security group")
.securityGroupName("vm_security_group1")
.build());
var vm02Index_vmVm = new Vm("vm02Index/vmVm", VmArgs.builder()
.imageId(var_.image_id())
.vmType(var_.vm_type())
.keypairName(var_.keypair_name())
.securityGroupIds(securityGroup01SecurityGroup.securityGroupId())
.blockDeviceMappings(VmBlockDeviceMappingArgs.builder()
.deviceName("/dev/sdb")
.bsu(VmBlockDeviceMappingBsuArgs.builder()
.volumeSize(30)
.volumeType("gp2")
.snapshotId(outscale_snapshot.snapshot().id())
.deleteOnVmDeletion(false)
.tags(VmBlockDeviceMappingBsuTagArgs.builder()
.key("Name")
.value("bsu-tags-gp2")
.build())
.build())
.build())
.build());
}
}
resources:
securityGroup01SecurityGroup:
type: outscale:SecurityGroup
properties:
description: vm security group
securityGroupName: vm_security_group1
vm02Vm:
type: outscale:Vm
properties:
imageId: ${var.image_id}
vmType: ${var.vm_type}
keypairName: ${var.keypair_name}
securityGroupIds:
- ${securityGroup01SecurityGroup.securityGroupId}
blockDeviceMappings:
- deviceName: /dev/sda1
bsu:
volumeSize: 15
volumeType: gp2
snapshotId: ${var.snapshot_id}
- deviceName: /dev/sdb
bsu:
volumeSize: 22
volumeType: io1
iops: 150
deleteOnVmDeletion: true
securityGroup01Index/securityGroupSecurityGroup:
type: outscale:SecurityGroup
properties:
description: vm security group
securityGroupName: vm_security_group1
vm02Index/vmVm:
type: outscale:Vm
properties:
imageId: ${var.image_id}
vmType: ${var.vm_type}
keypairName: ${var.keypair_name}
securityGroupIds:
- ${securityGroup01SecurityGroup.securityGroupId}
blockDeviceMappings:
- deviceName: /dev/sdb
bsu:
volumeSize: 30
volumeType: gp2
snapshotId: ${outscale_snapshot.snapshot.id}
deleteOnVmDeletion: false
tags:
- key: Name
value: bsu-tags-gp2
Create a VM in a Net with a network
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const net01 = new outscale.Net("net01", {
ipRange: "10.0.0.0/16",
tags: [{
key: "name",
value: "terraform-net-for-vm",
}],
});
const subnet01 = new outscale.Subnet("subnet01", {
netId: net01.netId,
ipRange: "10.0.0.0/24",
subregionName: "eu-west-2b",
tags: [{
key: "name",
value: "terraform-subnet-for-vm",
}],
});
const securityGroup01 = new outscale.SecurityGroup("securityGroup01", {
description: "Terraform security group for VM",
securityGroupName: "terraform-security-group-for-vm",
netId: net01.netId,
});
const internetService01 = new outscale.InternetService("internetService01", {});
const routeTable01 = new outscale.RouteTable("routeTable01", {
netId: net01.netId,
tags: [{
key: "name",
value: "terraform-route-table-for-vm",
}],
});
const routeTableLink01 = new outscale.RouteTableLink("routeTableLink01", {
routeTableId: routeTable01.routeTableId,
subnetId: subnet01.subnetId,
});
const internetServiceLink01 = new outscale.InternetServiceLink("internetServiceLink01", {
internetServiceId: internetService01.internetServiceId,
netId: net01.netId,
});
const route01 = new outscale.Route("route01", {
gatewayId: internetService01.internetServiceId,
destinationIpRange: "0.0.0.0/0",
routeTableId: routeTable01.routeTableId,
});
const vm03 = new outscale.Vm("vm03", {
imageId: _var.image_id,
vmType: _var.vm_type,
keypairName: _var.keypair_name,
securityGroupIds: [securityGroup01.securityGroupId],
subnetId: subnet01.subnetId,
});
import pulumi
import pulumi_outscale as outscale
net01 = outscale.Net("net01",
ip_range="10.0.0.0/16",
tags=[{
"key": "name",
"value": "terraform-net-for-vm",
}])
subnet01 = outscale.Subnet("subnet01",
net_id=net01.net_id,
ip_range="10.0.0.0/24",
subregion_name="eu-west-2b",
tags=[{
"key": "name",
"value": "terraform-subnet-for-vm",
}])
security_group01 = outscale.SecurityGroup("securityGroup01",
description="Terraform security group for VM",
security_group_name="terraform-security-group-for-vm",
net_id=net01.net_id)
internet_service01 = outscale.InternetService("internetService01")
route_table01 = outscale.RouteTable("routeTable01",
net_id=net01.net_id,
tags=[{
"key": "name",
"value": "terraform-route-table-for-vm",
}])
route_table_link01 = outscale.RouteTableLink("routeTableLink01",
route_table_id=route_table01.route_table_id,
subnet_id=subnet01.subnet_id)
internet_service_link01 = outscale.InternetServiceLink("internetServiceLink01",
internet_service_id=internet_service01.internet_service_id,
net_id=net01.net_id)
route01 = outscale.Route("route01",
gateway_id=internet_service01.internet_service_id,
destination_ip_range="0.0.0.0/0",
route_table_id=route_table01.route_table_id)
vm03 = outscale.Vm("vm03",
image_id=var["image_id"],
vm_type=var["vm_type"],
keypair_name=var["keypair_name"],
security_group_ids=[security_group01.security_group_id],
subnet_id=subnet01.subnet_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 {
net01, err := outscale.NewNet(ctx, "net01", &outscale.NetArgs{
IpRange: pulumi.String("10.0.0.0/16"),
Tags: outscale.NetTagArray{
&outscale.NetTagArgs{
Key: pulumi.String("name"),
Value: pulumi.String("terraform-net-for-vm"),
},
},
})
if err != nil {
return err
}
subnet01, err := outscale.NewSubnet(ctx, "subnet01", &outscale.SubnetArgs{
NetId: net01.NetId,
IpRange: pulumi.String("10.0.0.0/24"),
SubregionName: pulumi.String("eu-west-2b"),
Tags: outscale.SubnetTagArray{
&outscale.SubnetTagArgs{
Key: pulumi.String("name"),
Value: pulumi.String("terraform-subnet-for-vm"),
},
},
})
if err != nil {
return err
}
securityGroup01, err := outscale.NewSecurityGroup(ctx, "securityGroup01", &outscale.SecurityGroupArgs{
Description: pulumi.String("Terraform security group for VM"),
SecurityGroupName: pulumi.String("terraform-security-group-for-vm"),
NetId: net01.NetId,
})
if err != nil {
return err
}
internetService01, err := outscale.NewInternetService(ctx, "internetService01", nil)
if err != nil {
return err
}
routeTable01, err := outscale.NewRouteTable(ctx, "routeTable01", &outscale.RouteTableArgs{
NetId: net01.NetId,
Tags: outscale.RouteTableTagArray{
&outscale.RouteTableTagArgs{
Key: pulumi.String("name"),
Value: pulumi.String("terraform-route-table-for-vm"),
},
},
})
if err != nil {
return err
}
_, err = outscale.NewRouteTableLink(ctx, "routeTableLink01", &outscale.RouteTableLinkArgs{
RouteTableId: routeTable01.RouteTableId,
SubnetId: subnet01.SubnetId,
})
if err != nil {
return err
}
_, err = outscale.NewInternetServiceLink(ctx, "internetServiceLink01", &outscale.InternetServiceLinkArgs{
InternetServiceId: internetService01.InternetServiceId,
NetId: net01.NetId,
})
if err != nil {
return err
}
_, err = outscale.NewRoute(ctx, "route01", &outscale.RouteArgs{
GatewayId: internetService01.InternetServiceId,
DestinationIpRange: pulumi.String("0.0.0.0/0"),
RouteTableId: routeTable01.RouteTableId,
})
if err != nil {
return err
}
_, err = outscale.NewVm(ctx, "vm03", &outscale.VmArgs{
ImageId: pulumi.Any(_var.Image_id),
VmType: pulumi.Any(_var.Vm_type),
KeypairName: pulumi.Any(_var.Keypair_name),
SecurityGroupIds: pulumi.StringArray{
securityGroup01.SecurityGroupId,
},
SubnetId: subnet01.SubnetId,
})
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 net01 = new Outscale.Net("net01", new()
{
IpRange = "10.0.0.0/16",
Tags = new[]
{
new Outscale.Inputs.NetTagArgs
{
Key = "name",
Value = "terraform-net-for-vm",
},
},
});
var subnet01 = new Outscale.Subnet("subnet01", new()
{
NetId = net01.NetId,
IpRange = "10.0.0.0/24",
SubregionName = "eu-west-2b",
Tags = new[]
{
new Outscale.Inputs.SubnetTagArgs
{
Key = "name",
Value = "terraform-subnet-for-vm",
},
},
});
var securityGroup01 = new Outscale.SecurityGroup("securityGroup01", new()
{
Description = "Terraform security group for VM",
SecurityGroupName = "terraform-security-group-for-vm",
NetId = net01.NetId,
});
var internetService01 = new Outscale.InternetService("internetService01");
var routeTable01 = new Outscale.RouteTable("routeTable01", new()
{
NetId = net01.NetId,
Tags = new[]
{
new Outscale.Inputs.RouteTableTagArgs
{
Key = "name",
Value = "terraform-route-table-for-vm",
},
},
});
var routeTableLink01 = new Outscale.RouteTableLink("routeTableLink01", new()
{
RouteTableId = routeTable01.RouteTableId,
SubnetId = subnet01.SubnetId,
});
var internetServiceLink01 = new Outscale.InternetServiceLink("internetServiceLink01", new()
{
InternetServiceId = internetService01.InternetServiceId,
NetId = net01.NetId,
});
var route01 = new Outscale.Route("route01", new()
{
GatewayId = internetService01.InternetServiceId,
DestinationIpRange = "0.0.0.0/0",
RouteTableId = routeTable01.RouteTableId,
});
var vm03 = new Outscale.Vm("vm03", new()
{
ImageId = @var.Image_id,
VmType = @var.Vm_type,
KeypairName = @var.Keypair_name,
SecurityGroupIds = new[]
{
securityGroup01.SecurityGroupId,
},
SubnetId = subnet01.SubnetId,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Net;
import com.pulumi.outscale.NetArgs;
import com.pulumi.outscale.inputs.NetTagArgs;
import com.pulumi.outscale.Subnet;
import com.pulumi.outscale.SubnetArgs;
import com.pulumi.outscale.inputs.SubnetTagArgs;
import com.pulumi.outscale.SecurityGroup;
import com.pulumi.outscale.SecurityGroupArgs;
import com.pulumi.outscale.InternetService;
import com.pulumi.outscale.RouteTable;
import com.pulumi.outscale.RouteTableArgs;
import com.pulumi.outscale.inputs.RouteTableTagArgs;
import com.pulumi.outscale.RouteTableLink;
import com.pulumi.outscale.RouteTableLinkArgs;
import com.pulumi.outscale.InternetServiceLink;
import com.pulumi.outscale.InternetServiceLinkArgs;
import com.pulumi.outscale.Route;
import com.pulumi.outscale.RouteArgs;
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 net01 = new Net("net01", NetArgs.builder()
.ipRange("10.0.0.0/16")
.tags(NetTagArgs.builder()
.key("name")
.value("terraform-net-for-vm")
.build())
.build());
var subnet01 = new Subnet("subnet01", SubnetArgs.builder()
.netId(net01.netId())
.ipRange("10.0.0.0/24")
.subregionName("eu-west-2b")
.tags(SubnetTagArgs.builder()
.key("name")
.value("terraform-subnet-for-vm")
.build())
.build());
var securityGroup01 = new SecurityGroup("securityGroup01", SecurityGroupArgs.builder()
.description("Terraform security group for VM")
.securityGroupName("terraform-security-group-for-vm")
.netId(net01.netId())
.build());
var internetService01 = new InternetService("internetService01");
var routeTable01 = new RouteTable("routeTable01", RouteTableArgs.builder()
.netId(net01.netId())
.tags(RouteTableTagArgs.builder()
.key("name")
.value("terraform-route-table-for-vm")
.build())
.build());
var routeTableLink01 = new RouteTableLink("routeTableLink01", RouteTableLinkArgs.builder()
.routeTableId(routeTable01.routeTableId())
.subnetId(subnet01.subnetId())
.build());
var internetServiceLink01 = new InternetServiceLink("internetServiceLink01", InternetServiceLinkArgs.builder()
.internetServiceId(internetService01.internetServiceId())
.netId(net01.netId())
.build());
var route01 = new Route("route01", RouteArgs.builder()
.gatewayId(internetService01.internetServiceId())
.destinationIpRange("0.0.0.0/0")
.routeTableId(routeTable01.routeTableId())
.build());
var vm03 = new Vm("vm03", VmArgs.builder()
.imageId(var_.image_id())
.vmType(var_.vm_type())
.keypairName(var_.keypair_name())
.securityGroupIds(securityGroup01.securityGroupId())
.subnetId(subnet01.subnetId())
.build());
}
}
resources:
net01:
type: outscale:Net
properties:
ipRange: 10.0.0.0/16
tags:
- key: name
value: terraform-net-for-vm
subnet01:
type: outscale:Subnet
properties:
netId: ${net01.netId}
ipRange: 10.0.0.0/24
subregionName: eu-west-2b
tags:
- key: name
value: terraform-subnet-for-vm
securityGroup01:
type: outscale:SecurityGroup
properties:
description: Terraform security group for VM
securityGroupName: terraform-security-group-for-vm
netId: ${net01.netId}
internetService01:
type: outscale:InternetService
routeTable01:
type: outscale:RouteTable
properties:
netId: ${net01.netId}
tags:
- key: name
value: terraform-route-table-for-vm
routeTableLink01:
type: outscale:RouteTableLink
properties:
routeTableId: ${routeTable01.routeTableId}
subnetId: ${subnet01.subnetId}
internetServiceLink01:
type: outscale:InternetServiceLink
properties:
internetServiceId: ${internetService01.internetServiceId}
netId: ${net01.netId}
route01:
type: outscale:Route
properties:
gatewayId: ${internetService01.internetServiceId}
destinationIpRange: 0.0.0.0/0
routeTableId: ${routeTable01.routeTableId}
vm03:
type: outscale:Vm
properties:
imageId: ${var.image_id}
vmType: ${var.vm_type}
keypairName: ${var.keypair_name}
securityGroupIds:
- ${securityGroup01.securityGroupId}
subnetId: ${subnet01.subnetId}
Create a VM with a primary NIC
Note: If you plan to use the
outscale.NicLink
resource, it is recommended to specify theprimary_nic
argument to define the primary network interface of a VM.
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const securityGroup01 = new outscale.SecurityGroup("securityGroup01", {
description: "vm security group",
securityGroupName: "vm_security_group1",
});
const net02 = new outscale.Net("net02", {
ipRange: "10.0.0.0/16",
tags: [{
key: "name",
value: "terraform-net-for-vm-with-nic",
}],
});
const subnet02 = new outscale.Subnet("subnet02", {
netId: net02.netId,
ipRange: "10.0.0.0/24",
subregionName: "eu-west-2a",
tags: [{
key: "name",
value: "terraform-subnet-for-vm-with-nic",
}],
});
const nic01 = new outscale.Nic("nic01", {subnetId: subnet02.subnetId});
const vm04 = new outscale.Vm("vm04", {
imageId: _var.image_id,
vmType: "tinav5.c1r1p2",
keypairName: _var.keypair_name,
securityGroupIds: [securityGroup01.securityGroupId],
primaryNics: [{
nicId: nic01.nicId,
deviceNumber: 0,
}],
});
import pulumi
import pulumi_outscale as outscale
security_group01 = outscale.SecurityGroup("securityGroup01",
description="vm security group",
security_group_name="vm_security_group1")
net02 = outscale.Net("net02",
ip_range="10.0.0.0/16",
tags=[{
"key": "name",
"value": "terraform-net-for-vm-with-nic",
}])
subnet02 = outscale.Subnet("subnet02",
net_id=net02.net_id,
ip_range="10.0.0.0/24",
subregion_name="eu-west-2a",
tags=[{
"key": "name",
"value": "terraform-subnet-for-vm-with-nic",
}])
nic01 = outscale.Nic("nic01", subnet_id=subnet02.subnet_id)
vm04 = outscale.Vm("vm04",
image_id=var["image_id"],
vm_type="tinav5.c1r1p2",
keypair_name=var["keypair_name"],
security_group_ids=[security_group01.security_group_id],
primary_nics=[{
"nic_id": nic01.nic_id,
"device_number": 0,
}])
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 {
securityGroup01, err := outscale.NewSecurityGroup(ctx, "securityGroup01", &outscale.SecurityGroupArgs{
Description: pulumi.String("vm security group"),
SecurityGroupName: pulumi.String("vm_security_group1"),
})
if err != nil {
return err
}
net02, err := outscale.NewNet(ctx, "net02", &outscale.NetArgs{
IpRange: pulumi.String("10.0.0.0/16"),
Tags: outscale.NetTagArray{
&outscale.NetTagArgs{
Key: pulumi.String("name"),
Value: pulumi.String("terraform-net-for-vm-with-nic"),
},
},
})
if err != nil {
return err
}
subnet02, err := outscale.NewSubnet(ctx, "subnet02", &outscale.SubnetArgs{
NetId: net02.NetId,
IpRange: pulumi.String("10.0.0.0/24"),
SubregionName: pulumi.String("eu-west-2a"),
Tags: outscale.SubnetTagArray{
&outscale.SubnetTagArgs{
Key: pulumi.String("name"),
Value: pulumi.String("terraform-subnet-for-vm-with-nic"),
},
},
})
if err != nil {
return err
}
nic01, err := outscale.NewNic(ctx, "nic01", &outscale.NicArgs{
SubnetId: subnet02.SubnetId,
})
if err != nil {
return err
}
_, err = outscale.NewVm(ctx, "vm04", &outscale.VmArgs{
ImageId: pulumi.Any(_var.Image_id),
VmType: pulumi.String("tinav5.c1r1p2"),
KeypairName: pulumi.Any(_var.Keypair_name),
SecurityGroupIds: pulumi.StringArray{
securityGroup01.SecurityGroupId,
},
PrimaryNics: outscale.VmPrimaryNicArray{
&outscale.VmPrimaryNicArgs{
NicId: nic01.NicId,
DeviceNumber: pulumi.Float64(0),
},
},
})
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 securityGroup01 = new Outscale.SecurityGroup("securityGroup01", new()
{
Description = "vm security group",
SecurityGroupName = "vm_security_group1",
});
var net02 = new Outscale.Net("net02", new()
{
IpRange = "10.0.0.0/16",
Tags = new[]
{
new Outscale.Inputs.NetTagArgs
{
Key = "name",
Value = "terraform-net-for-vm-with-nic",
},
},
});
var subnet02 = new Outscale.Subnet("subnet02", new()
{
NetId = net02.NetId,
IpRange = "10.0.0.0/24",
SubregionName = "eu-west-2a",
Tags = new[]
{
new Outscale.Inputs.SubnetTagArgs
{
Key = "name",
Value = "terraform-subnet-for-vm-with-nic",
},
},
});
var nic01 = new Outscale.Nic("nic01", new()
{
SubnetId = subnet02.SubnetId,
});
var vm04 = new Outscale.Vm("vm04", new()
{
ImageId = @var.Image_id,
VmType = "tinav5.c1r1p2",
KeypairName = @var.Keypair_name,
SecurityGroupIds = new[]
{
securityGroup01.SecurityGroupId,
},
PrimaryNics = new[]
{
new Outscale.Inputs.VmPrimaryNicArgs
{
NicId = nic01.NicId,
DeviceNumber = 0,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.SecurityGroup;
import com.pulumi.outscale.SecurityGroupArgs;
import com.pulumi.outscale.Net;
import com.pulumi.outscale.NetArgs;
import com.pulumi.outscale.inputs.NetTagArgs;
import com.pulumi.outscale.Subnet;
import com.pulumi.outscale.SubnetArgs;
import com.pulumi.outscale.inputs.SubnetTagArgs;
import com.pulumi.outscale.Nic;
import com.pulumi.outscale.NicArgs;
import com.pulumi.outscale.Vm;
import com.pulumi.outscale.VmArgs;
import com.pulumi.outscale.inputs.VmPrimaryNicArgs;
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 securityGroup01 = new SecurityGroup("securityGroup01", SecurityGroupArgs.builder()
.description("vm security group")
.securityGroupName("vm_security_group1")
.build());
var net02 = new Net("net02", NetArgs.builder()
.ipRange("10.0.0.0/16")
.tags(NetTagArgs.builder()
.key("name")
.value("terraform-net-for-vm-with-nic")
.build())
.build());
var subnet02 = new Subnet("subnet02", SubnetArgs.builder()
.netId(net02.netId())
.ipRange("10.0.0.0/24")
.subregionName("eu-west-2a")
.tags(SubnetTagArgs.builder()
.key("name")
.value("terraform-subnet-for-vm-with-nic")
.build())
.build());
var nic01 = new Nic("nic01", NicArgs.builder()
.subnetId(subnet02.subnetId())
.build());
var vm04 = new Vm("vm04", VmArgs.builder()
.imageId(var_.image_id())
.vmType("tinav5.c1r1p2")
.keypairName(var_.keypair_name())
.securityGroupIds(securityGroup01.securityGroupId())
.primaryNics(VmPrimaryNicArgs.builder()
.nicId(nic01.nicId())
.deviceNumber("0")
.build())
.build());
}
}
resources:
securityGroup01:
type: outscale:SecurityGroup
properties:
description: vm security group
securityGroupName: vm_security_group1
net02:
type: outscale:Net
properties:
ipRange: 10.0.0.0/16
tags:
- key: name
value: terraform-net-for-vm-with-nic
subnet02:
type: outscale:Subnet
properties:
netId: ${net02.netId}
ipRange: 10.0.0.0/24
subregionName: eu-west-2a
tags:
- key: name
value: terraform-subnet-for-vm-with-nic
nic01:
type: outscale:Nic
properties:
subnetId: ${subnet02.subnetId}
vm04:
type: outscale:Vm
properties:
imageId: ${var.image_id}
vmType: tinav5.c1r1p2
keypairName: ${var.keypair_name}
securityGroupIds:
- ${securityGroup01.securityGroupId}
primaryNics:
- nicId: ${nic01.nicId}
deviceNumber: '0'
Create a VM with secondary NICs
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const securityGroup01 = new outscale.SecurityGroup("securityGroup01", {
description: "vm security group",
securityGroupName: "vm_security_group1",
});
const net02 = new outscale.Net("net02", {
ipRange: "10.0.0.0/16",
tags: [{
key: "name",
value: "terraform-net-for-vm-with-nic",
}],
});
const subnet02 = new outscale.Subnet("subnet02", {
netId: net02.netId,
ipRange: "10.0.0.0/24",
subregionName: "eu-west-2a",
tags: [{
key: "name",
value: "terraform-subnet-for-vm-with-nic",
}],
});
const nic01 = new outscale.Nic("nic01", {subnetId: subnet02.subnetId});
const vm04 = new outscale.Vm("vm04", {
imageId: _var.image_id,
vmType: "tinav5.c1r1p2",
keypairName: _var.keypair_name,
securityGroupIds: [securityGroup01.securityGroupId],
nics: [
{
nicId: nic01.nicId,
deviceNumber: 0,
},
{
nicId: outscale_nic.nic02.nic_id,
deviceNumber: 1,
},
],
});
import pulumi
import pulumi_outscale as outscale
security_group01 = outscale.SecurityGroup("securityGroup01",
description="vm security group",
security_group_name="vm_security_group1")
net02 = outscale.Net("net02",
ip_range="10.0.0.0/16",
tags=[{
"key": "name",
"value": "terraform-net-for-vm-with-nic",
}])
subnet02 = outscale.Subnet("subnet02",
net_id=net02.net_id,
ip_range="10.0.0.0/24",
subregion_name="eu-west-2a",
tags=[{
"key": "name",
"value": "terraform-subnet-for-vm-with-nic",
}])
nic01 = outscale.Nic("nic01", subnet_id=subnet02.subnet_id)
vm04 = outscale.Vm("vm04",
image_id=var["image_id"],
vm_type="tinav5.c1r1p2",
keypair_name=var["keypair_name"],
security_group_ids=[security_group01.security_group_id],
nics=[
{
"nic_id": nic01.nic_id,
"device_number": 0,
},
{
"nic_id": outscale_nic["nic02"]["nic_id"],
"device_number": 1,
},
])
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 {
securityGroup01, err := outscale.NewSecurityGroup(ctx, "securityGroup01", &outscale.SecurityGroupArgs{
Description: pulumi.String("vm security group"),
SecurityGroupName: pulumi.String("vm_security_group1"),
})
if err != nil {
return err
}
net02, err := outscale.NewNet(ctx, "net02", &outscale.NetArgs{
IpRange: pulumi.String("10.0.0.0/16"),
Tags: outscale.NetTagArray{
&outscale.NetTagArgs{
Key: pulumi.String("name"),
Value: pulumi.String("terraform-net-for-vm-with-nic"),
},
},
})
if err != nil {
return err
}
subnet02, err := outscale.NewSubnet(ctx, "subnet02", &outscale.SubnetArgs{
NetId: net02.NetId,
IpRange: pulumi.String("10.0.0.0/24"),
SubregionName: pulumi.String("eu-west-2a"),
Tags: outscale.SubnetTagArray{
&outscale.SubnetTagArgs{
Key: pulumi.String("name"),
Value: pulumi.String("terraform-subnet-for-vm-with-nic"),
},
},
})
if err != nil {
return err
}
nic01, err := outscale.NewNic(ctx, "nic01", &outscale.NicArgs{
SubnetId: subnet02.SubnetId,
})
if err != nil {
return err
}
_, err = outscale.NewVm(ctx, "vm04", &outscale.VmArgs{
ImageId: pulumi.Any(_var.Image_id),
VmType: pulumi.String("tinav5.c1r1p2"),
KeypairName: pulumi.Any(_var.Keypair_name),
SecurityGroupIds: pulumi.StringArray{
securityGroup01.SecurityGroupId,
},
Nics: outscale.VmNicArray{
&outscale.VmNicArgs{
NicId: nic01.NicId,
DeviceNumber: pulumi.Float64(0),
},
&outscale.VmNicArgs{
NicId: pulumi.Any(outscale_nic.Nic02.Nic_id),
DeviceNumber: pulumi.Float64(1),
},
},
})
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 securityGroup01 = new Outscale.SecurityGroup("securityGroup01", new()
{
Description = "vm security group",
SecurityGroupName = "vm_security_group1",
});
var net02 = new Outscale.Net("net02", new()
{
IpRange = "10.0.0.0/16",
Tags = new[]
{
new Outscale.Inputs.NetTagArgs
{
Key = "name",
Value = "terraform-net-for-vm-with-nic",
},
},
});
var subnet02 = new Outscale.Subnet("subnet02", new()
{
NetId = net02.NetId,
IpRange = "10.0.0.0/24",
SubregionName = "eu-west-2a",
Tags = new[]
{
new Outscale.Inputs.SubnetTagArgs
{
Key = "name",
Value = "terraform-subnet-for-vm-with-nic",
},
},
});
var nic01 = new Outscale.Nic("nic01", new()
{
SubnetId = subnet02.SubnetId,
});
var vm04 = new Outscale.Vm("vm04", new()
{
ImageId = @var.Image_id,
VmType = "tinav5.c1r1p2",
KeypairName = @var.Keypair_name,
SecurityGroupIds = new[]
{
securityGroup01.SecurityGroupId,
},
Nics = new[]
{
new Outscale.Inputs.VmNicArgs
{
NicId = nic01.NicId,
DeviceNumber = 0,
},
new Outscale.Inputs.VmNicArgs
{
NicId = outscale_nic.Nic02.Nic_id,
DeviceNumber = 1,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.SecurityGroup;
import com.pulumi.outscale.SecurityGroupArgs;
import com.pulumi.outscale.Net;
import com.pulumi.outscale.NetArgs;
import com.pulumi.outscale.inputs.NetTagArgs;
import com.pulumi.outscale.Subnet;
import com.pulumi.outscale.SubnetArgs;
import com.pulumi.outscale.inputs.SubnetTagArgs;
import com.pulumi.outscale.Nic;
import com.pulumi.outscale.NicArgs;
import com.pulumi.outscale.Vm;
import com.pulumi.outscale.VmArgs;
import com.pulumi.outscale.inputs.VmNicArgs;
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 securityGroup01 = new SecurityGroup("securityGroup01", SecurityGroupArgs.builder()
.description("vm security group")
.securityGroupName("vm_security_group1")
.build());
var net02 = new Net("net02", NetArgs.builder()
.ipRange("10.0.0.0/16")
.tags(NetTagArgs.builder()
.key("name")
.value("terraform-net-for-vm-with-nic")
.build())
.build());
var subnet02 = new Subnet("subnet02", SubnetArgs.builder()
.netId(net02.netId())
.ipRange("10.0.0.0/24")
.subregionName("eu-west-2a")
.tags(SubnetTagArgs.builder()
.key("name")
.value("terraform-subnet-for-vm-with-nic")
.build())
.build());
var nic01 = new Nic("nic01", NicArgs.builder()
.subnetId(subnet02.subnetId())
.build());
var vm04 = new Vm("vm04", VmArgs.builder()
.imageId(var_.image_id())
.vmType("tinav5.c1r1p2")
.keypairName(var_.keypair_name())
.securityGroupIds(securityGroup01.securityGroupId())
.nics(
VmNicArgs.builder()
.nicId(nic01.nicId())
.deviceNumber("0")
.build(),
VmNicArgs.builder()
.nicId(outscale_nic.nic02().nic_id())
.deviceNumber("1")
.build())
.build());
}
}
resources:
securityGroup01:
type: outscale:SecurityGroup
properties:
description: vm security group
securityGroupName: vm_security_group1
net02:
type: outscale:Net
properties:
ipRange: 10.0.0.0/16
tags:
- key: name
value: terraform-net-for-vm-with-nic
subnet02:
type: outscale:Subnet
properties:
netId: ${net02.netId}
ipRange: 10.0.0.0/24
subregionName: eu-west-2a
tags:
- key: name
value: terraform-subnet-for-vm-with-nic
nic01:
type: outscale:Nic
properties:
subnetId: ${subnet02.subnetId}
vm04:
type: outscale:Vm
properties:
imageId: ${var.image_id}
vmType: tinav5.c1r1p2
keypairName: ${var.keypair_name}
securityGroupIds:
- ${securityGroup01.securityGroupId}
nics:
- nicId: ${nic01.nicId}
deviceNumber: '0'
- nicId: ${outscale_nic.nic02.nic_id}
deviceNumber: '1'
Create Vm Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Vm(name: string, args: VmArgs, opts?: CustomResourceOptions);
@overload
def Vm(resource_name: str,
args: VmArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Vm(resource_name: str,
opts: Optional[ResourceOptions] = None,
image_id: Optional[str] = None,
placement_tenancy: Optional[str] = None,
vm_id: Optional[str] = None,
get_admin_password: Optional[bool] = None,
bsu_optimized: Optional[bool] = None,
is_source_dest_checked: Optional[bool] = None,
keypair_name: Optional[str] = None,
nested_virtualization: Optional[bool] = None,
nics: Optional[Sequence[VmNicArgs]] = None,
outscale_vm_id: Optional[str] = None,
performance: Optional[str] = None,
vm_type: Optional[str] = None,
deletion_protection: Optional[bool] = None,
security_group_ids: Optional[Sequence[str]] = None,
private_ips: Optional[Sequence[str]] = None,
primary_nics: Optional[Sequence[VmPrimaryNicArgs]] = None,
security_group_names: Optional[Sequence[str]] = None,
state: Optional[str] = None,
subnet_id: Optional[str] = None,
tags: Optional[Sequence[VmTagArgs]] = None,
timeouts: Optional[VmTimeoutsArgs] = None,
user_data: Optional[str] = None,
block_device_mappings: Optional[Sequence[VmBlockDeviceMappingArgs]] = None,
vm_initiated_shutdown_behavior: Optional[str] = None,
placement_subregion_name: Optional[str] = None)
func NewVm(ctx *Context, name string, args VmArgs, opts ...ResourceOption) (*Vm, error)
public Vm(string name, VmArgs args, CustomResourceOptions? opts = null)
type: outscale:Vm
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 VmArgs
- 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 VmArgs
- 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 VmArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VmArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VmArgs
- 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 vmResource = new Outscale.Vm("vmResource", new()
{
ImageId = "string",
PlacementTenancy = "string",
VmId = "string",
GetAdminPassword = false,
BsuOptimized = false,
IsSourceDestChecked = false,
KeypairName = "string",
NestedVirtualization = false,
Nics = new[]
{
new Outscale.Inputs.VmNicArgs
{
DeviceNumber = 0,
NetId = "string",
MacAddress = "string",
DeleteOnVmDeletion = false,
IsSourceDestChecked = false,
NicId = "string",
LinkPublicIps = new[]
{
new Outscale.Inputs.VmNicLinkPublicIpArgs
{
PublicDnsName = "string",
PublicIp = "string",
PublicIpAccountId = "string",
},
},
Description = "string",
AccountId = "string",
LinkNics = new[]
{
new Outscale.Inputs.VmNicLinkNicArgs
{
DeleteOnVmDeletion = false,
DeviceNumber = "string",
LinkNicId = "string",
State = "string",
},
},
PrivateDnsName = "string",
PrivateIps = new[]
{
new Outscale.Inputs.VmNicPrivateIpArgs
{
IsPrimary = false,
LinkPublicIps = new[]
{
new Outscale.Inputs.VmNicPrivateIpLinkPublicIpArgs
{
PublicDnsName = "string",
PublicIp = "string",
PublicIpAccountId = "string",
},
},
PrivateDnsName = "string",
PrivateIp = "string",
},
},
SecondaryPrivateIpCount = 0,
SecurityGroupIds = new[]
{
"string",
},
SecurityGroups = new[]
{
new Outscale.Inputs.VmNicSecurityGroupArgs
{
SecurityGroupId = "string",
SecurityGroupName = "string",
},
},
State = "string",
SubnetId = "string",
},
},
OutscaleVmId = "string",
Performance = "string",
VmType = "string",
DeletionProtection = false,
SecurityGroupIds = new[]
{
"string",
},
PrivateIps = new[]
{
"string",
},
PrimaryNics = new[]
{
new Outscale.Inputs.VmPrimaryNicArgs
{
DeviceNumber = 0,
NetId = "string",
MacAddress = "string",
DeleteOnVmDeletion = false,
IsSourceDestChecked = false,
NicId = "string",
LinkPublicIps = new[]
{
new Outscale.Inputs.VmPrimaryNicLinkPublicIpArgs
{
PublicDnsName = "string",
PublicIp = "string",
PublicIpAccountId = "string",
},
},
Description = "string",
AccountId = "string",
LinkNics = new[]
{
new Outscale.Inputs.VmPrimaryNicLinkNicArgs
{
DeleteOnVmDeletion = false,
DeviceNumber = "string",
LinkNicId = "string",
State = "string",
},
},
PrivateDnsName = "string",
PrivateIps = new[]
{
new Outscale.Inputs.VmPrimaryNicPrivateIpArgs
{
IsPrimary = false,
LinkPublicIps = new[]
{
new Outscale.Inputs.VmPrimaryNicPrivateIpLinkPublicIpArgs
{
PublicDnsName = "string",
PublicIp = "string",
PublicIpAccountId = "string",
},
},
PrivateDnsName = "string",
PrivateIp = "string",
},
},
SecondaryPrivateIpCount = 0,
SecurityGroupIds = new[]
{
"string",
},
SecurityGroups = new[]
{
new Outscale.Inputs.VmPrimaryNicSecurityGroupArgs
{
SecurityGroupId = "string",
SecurityGroupName = "string",
},
},
State = "string",
SubnetId = "string",
},
},
SecurityGroupNames = new[]
{
"string",
},
State = "string",
SubnetId = "string",
Tags = new[]
{
new Outscale.Inputs.VmTagArgs
{
Key = "string",
Value = "string",
},
},
Timeouts = new Outscale.Inputs.VmTimeoutsArgs
{
Create = "string",
Delete = "string",
Read = "string",
Update = "string",
},
UserData = "string",
BlockDeviceMappings = new[]
{
new Outscale.Inputs.VmBlockDeviceMappingArgs
{
Bsu = new Outscale.Inputs.VmBlockDeviceMappingBsuArgs
{
DeleteOnVmDeletion = false,
Iops = 0,
SnapshotId = "string",
Tags = new[]
{
new Outscale.Inputs.VmBlockDeviceMappingBsuTagArgs
{
Key = "string",
Value = "string",
},
},
VolumeSize = 0,
VolumeType = "string",
},
DeviceName = "string",
NoDevice = "string",
VirtualDeviceName = "string",
},
},
VmInitiatedShutdownBehavior = "string",
PlacementSubregionName = "string",
});
example, err := outscale.NewVm(ctx, "vmResource", &outscale.VmArgs{
ImageId: pulumi.String("string"),
PlacementTenancy: pulumi.String("string"),
VmId: pulumi.String("string"),
GetAdminPassword: pulumi.Bool(false),
BsuOptimized: pulumi.Bool(false),
IsSourceDestChecked: pulumi.Bool(false),
KeypairName: pulumi.String("string"),
NestedVirtualization: pulumi.Bool(false),
Nics: .VmNicArray{
&.VmNicArgs{
DeviceNumber: pulumi.Float64(0),
NetId: pulumi.String("string"),
MacAddress: pulumi.String("string"),
DeleteOnVmDeletion: pulumi.Bool(false),
IsSourceDestChecked: pulumi.Bool(false),
NicId: pulumi.String("string"),
LinkPublicIps: .VmNicLinkPublicIpArray{
&.VmNicLinkPublicIpArgs{
PublicDnsName: pulumi.String("string"),
PublicIp: pulumi.String("string"),
PublicIpAccountId: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
AccountId: pulumi.String("string"),
LinkNics: .VmNicLinkNicArray{
&.VmNicLinkNicArgs{
DeleteOnVmDeletion: pulumi.Bool(false),
DeviceNumber: pulumi.String("string"),
LinkNicId: pulumi.String("string"),
State: pulumi.String("string"),
},
},
PrivateDnsName: pulumi.String("string"),
PrivateIps: .VmNicPrivateIpArray{
&.VmNicPrivateIpArgs{
IsPrimary: pulumi.Bool(false),
LinkPublicIps: .VmNicPrivateIpLinkPublicIpArray{
&.VmNicPrivateIpLinkPublicIpArgs{
PublicDnsName: pulumi.String("string"),
PublicIp: pulumi.String("string"),
PublicIpAccountId: pulumi.String("string"),
},
},
PrivateDnsName: pulumi.String("string"),
PrivateIp: pulumi.String("string"),
},
},
SecondaryPrivateIpCount: pulumi.Float64(0),
SecurityGroupIds: pulumi.StringArray{
pulumi.String("string"),
},
SecurityGroups: .VmNicSecurityGroupArray{
&.VmNicSecurityGroupArgs{
SecurityGroupId: pulumi.String("string"),
SecurityGroupName: pulumi.String("string"),
},
},
State: pulumi.String("string"),
SubnetId: pulumi.String("string"),
},
},
OutscaleVmId: pulumi.String("string"),
Performance: pulumi.String("string"),
VmType: pulumi.String("string"),
DeletionProtection: pulumi.Bool(false),
SecurityGroupIds: pulumi.StringArray{
pulumi.String("string"),
},
PrivateIps: pulumi.StringArray{
pulumi.String("string"),
},
PrimaryNics: .VmPrimaryNicArray{
&.VmPrimaryNicArgs{
DeviceNumber: pulumi.Float64(0),
NetId: pulumi.String("string"),
MacAddress: pulumi.String("string"),
DeleteOnVmDeletion: pulumi.Bool(false),
IsSourceDestChecked: pulumi.Bool(false),
NicId: pulumi.String("string"),
LinkPublicIps: .VmPrimaryNicLinkPublicIpArray{
&.VmPrimaryNicLinkPublicIpArgs{
PublicDnsName: pulumi.String("string"),
PublicIp: pulumi.String("string"),
PublicIpAccountId: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
AccountId: pulumi.String("string"),
LinkNics: .VmPrimaryNicLinkNicArray{
&.VmPrimaryNicLinkNicArgs{
DeleteOnVmDeletion: pulumi.Bool(false),
DeviceNumber: pulumi.String("string"),
LinkNicId: pulumi.String("string"),
State: pulumi.String("string"),
},
},
PrivateDnsName: pulumi.String("string"),
PrivateIps: .VmPrimaryNicPrivateIpArray{
&.VmPrimaryNicPrivateIpArgs{
IsPrimary: pulumi.Bool(false),
LinkPublicIps: .VmPrimaryNicPrivateIpLinkPublicIpArray{
&.VmPrimaryNicPrivateIpLinkPublicIpArgs{
PublicDnsName: pulumi.String("string"),
PublicIp: pulumi.String("string"),
PublicIpAccountId: pulumi.String("string"),
},
},
PrivateDnsName: pulumi.String("string"),
PrivateIp: pulumi.String("string"),
},
},
SecondaryPrivateIpCount: pulumi.Float64(0),
SecurityGroupIds: pulumi.StringArray{
pulumi.String("string"),
},
SecurityGroups: .VmPrimaryNicSecurityGroupArray{
&.VmPrimaryNicSecurityGroupArgs{
SecurityGroupId: pulumi.String("string"),
SecurityGroupName: pulumi.String("string"),
},
},
State: pulumi.String("string"),
SubnetId: pulumi.String("string"),
},
},
SecurityGroupNames: pulumi.StringArray{
pulumi.String("string"),
},
State: pulumi.String("string"),
SubnetId: pulumi.String("string"),
Tags: .VmTagArray{
&.VmTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Timeouts: &.VmTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Read: pulumi.String("string"),
Update: pulumi.String("string"),
},
UserData: pulumi.String("string"),
BlockDeviceMappings: .VmBlockDeviceMappingArray{
&.VmBlockDeviceMappingArgs{
Bsu: &.VmBlockDeviceMappingBsuArgs{
DeleteOnVmDeletion: pulumi.Bool(false),
Iops: pulumi.Float64(0),
SnapshotId: pulumi.String("string"),
Tags: .VmBlockDeviceMappingBsuTagArray{
&.VmBlockDeviceMappingBsuTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
VolumeSize: pulumi.Float64(0),
VolumeType: pulumi.String("string"),
},
DeviceName: pulumi.String("string"),
NoDevice: pulumi.String("string"),
VirtualDeviceName: pulumi.String("string"),
},
},
VmInitiatedShutdownBehavior: pulumi.String("string"),
PlacementSubregionName: pulumi.String("string"),
})
var vmResource = new Vm("vmResource", VmArgs.builder()
.imageId("string")
.placementTenancy("string")
.vmId("string")
.getAdminPassword(false)
.bsuOptimized(false)
.isSourceDestChecked(false)
.keypairName("string")
.nestedVirtualization(false)
.nics(VmNicArgs.builder()
.deviceNumber(0)
.netId("string")
.macAddress("string")
.deleteOnVmDeletion(false)
.isSourceDestChecked(false)
.nicId("string")
.linkPublicIps(VmNicLinkPublicIpArgs.builder()
.publicDnsName("string")
.publicIp("string")
.publicIpAccountId("string")
.build())
.description("string")
.accountId("string")
.linkNics(VmNicLinkNicArgs.builder()
.deleteOnVmDeletion(false)
.deviceNumber("string")
.linkNicId("string")
.state("string")
.build())
.privateDnsName("string")
.privateIps(VmNicPrivateIpArgs.builder()
.isPrimary(false)
.linkPublicIps(VmNicPrivateIpLinkPublicIpArgs.builder()
.publicDnsName("string")
.publicIp("string")
.publicIpAccountId("string")
.build())
.privateDnsName("string")
.privateIp("string")
.build())
.secondaryPrivateIpCount(0)
.securityGroupIds("string")
.securityGroups(VmNicSecurityGroupArgs.builder()
.securityGroupId("string")
.securityGroupName("string")
.build())
.state("string")
.subnetId("string")
.build())
.outscaleVmId("string")
.performance("string")
.vmType("string")
.deletionProtection(false)
.securityGroupIds("string")
.privateIps("string")
.primaryNics(VmPrimaryNicArgs.builder()
.deviceNumber(0)
.netId("string")
.macAddress("string")
.deleteOnVmDeletion(false)
.isSourceDestChecked(false)
.nicId("string")
.linkPublicIps(VmPrimaryNicLinkPublicIpArgs.builder()
.publicDnsName("string")
.publicIp("string")
.publicIpAccountId("string")
.build())
.description("string")
.accountId("string")
.linkNics(VmPrimaryNicLinkNicArgs.builder()
.deleteOnVmDeletion(false)
.deviceNumber("string")
.linkNicId("string")
.state("string")
.build())
.privateDnsName("string")
.privateIps(VmPrimaryNicPrivateIpArgs.builder()
.isPrimary(false)
.linkPublicIps(VmPrimaryNicPrivateIpLinkPublicIpArgs.builder()
.publicDnsName("string")
.publicIp("string")
.publicIpAccountId("string")
.build())
.privateDnsName("string")
.privateIp("string")
.build())
.secondaryPrivateIpCount(0)
.securityGroupIds("string")
.securityGroups(VmPrimaryNicSecurityGroupArgs.builder()
.securityGroupId("string")
.securityGroupName("string")
.build())
.state("string")
.subnetId("string")
.build())
.securityGroupNames("string")
.state("string")
.subnetId("string")
.tags(VmTagArgs.builder()
.key("string")
.value("string")
.build())
.timeouts(VmTimeoutsArgs.builder()
.create("string")
.delete("string")
.read("string")
.update("string")
.build())
.userData("string")
.blockDeviceMappings(VmBlockDeviceMappingArgs.builder()
.bsu(VmBlockDeviceMappingBsuArgs.builder()
.deleteOnVmDeletion(false)
.iops(0)
.snapshotId("string")
.tags(VmBlockDeviceMappingBsuTagArgs.builder()
.key("string")
.value("string")
.build())
.volumeSize(0)
.volumeType("string")
.build())
.deviceName("string")
.noDevice("string")
.virtualDeviceName("string")
.build())
.vmInitiatedShutdownBehavior("string")
.placementSubregionName("string")
.build());
vm_resource = outscale.Vm("vmResource",
image_id="string",
placement_tenancy="string",
vm_id="string",
get_admin_password=False,
bsu_optimized=False,
is_source_dest_checked=False,
keypair_name="string",
nested_virtualization=False,
nics=[{
"device_number": 0,
"net_id": "string",
"mac_address": "string",
"delete_on_vm_deletion": False,
"is_source_dest_checked": False,
"nic_id": "string",
"link_public_ips": [{
"public_dns_name": "string",
"public_ip": "string",
"public_ip_account_id": "string",
}],
"description": "string",
"account_id": "string",
"link_nics": [{
"delete_on_vm_deletion": False,
"device_number": "string",
"link_nic_id": "string",
"state": "string",
}],
"private_dns_name": "string",
"private_ips": [{
"is_primary": False,
"link_public_ips": [{
"public_dns_name": "string",
"public_ip": "string",
"public_ip_account_id": "string",
}],
"private_dns_name": "string",
"private_ip": "string",
}],
"secondary_private_ip_count": 0,
"security_group_ids": ["string"],
"security_groups": [{
"security_group_id": "string",
"security_group_name": "string",
}],
"state": "string",
"subnet_id": "string",
}],
outscale_vm_id="string",
performance="string",
vm_type="string",
deletion_protection=False,
security_group_ids=["string"],
private_ips=["string"],
primary_nics=[{
"device_number": 0,
"net_id": "string",
"mac_address": "string",
"delete_on_vm_deletion": False,
"is_source_dest_checked": False,
"nic_id": "string",
"link_public_ips": [{
"public_dns_name": "string",
"public_ip": "string",
"public_ip_account_id": "string",
}],
"description": "string",
"account_id": "string",
"link_nics": [{
"delete_on_vm_deletion": False,
"device_number": "string",
"link_nic_id": "string",
"state": "string",
}],
"private_dns_name": "string",
"private_ips": [{
"is_primary": False,
"link_public_ips": [{
"public_dns_name": "string",
"public_ip": "string",
"public_ip_account_id": "string",
}],
"private_dns_name": "string",
"private_ip": "string",
}],
"secondary_private_ip_count": 0,
"security_group_ids": ["string"],
"security_groups": [{
"security_group_id": "string",
"security_group_name": "string",
}],
"state": "string",
"subnet_id": "string",
}],
security_group_names=["string"],
state="string",
subnet_id="string",
tags=[{
"key": "string",
"value": "string",
}],
timeouts={
"create": "string",
"delete": "string",
"read": "string",
"update": "string",
},
user_data="string",
block_device_mappings=[{
"bsu": {
"delete_on_vm_deletion": False,
"iops": 0,
"snapshot_id": "string",
"tags": [{
"key": "string",
"value": "string",
}],
"volume_size": 0,
"volume_type": "string",
},
"device_name": "string",
"no_device": "string",
"virtual_device_name": "string",
}],
vm_initiated_shutdown_behavior="string",
placement_subregion_name="string")
const vmResource = new outscale.Vm("vmResource", {
imageId: "string",
placementTenancy: "string",
vmId: "string",
getAdminPassword: false,
bsuOptimized: false,
isSourceDestChecked: false,
keypairName: "string",
nestedVirtualization: false,
nics: [{
deviceNumber: 0,
netId: "string",
macAddress: "string",
deleteOnVmDeletion: false,
isSourceDestChecked: false,
nicId: "string",
linkPublicIps: [{
publicDnsName: "string",
publicIp: "string",
publicIpAccountId: "string",
}],
description: "string",
accountId: "string",
linkNics: [{
deleteOnVmDeletion: false,
deviceNumber: "string",
linkNicId: "string",
state: "string",
}],
privateDnsName: "string",
privateIps: [{
isPrimary: false,
linkPublicIps: [{
publicDnsName: "string",
publicIp: "string",
publicIpAccountId: "string",
}],
privateDnsName: "string",
privateIp: "string",
}],
secondaryPrivateIpCount: 0,
securityGroupIds: ["string"],
securityGroups: [{
securityGroupId: "string",
securityGroupName: "string",
}],
state: "string",
subnetId: "string",
}],
outscaleVmId: "string",
performance: "string",
vmType: "string",
deletionProtection: false,
securityGroupIds: ["string"],
privateIps: ["string"],
primaryNics: [{
deviceNumber: 0,
netId: "string",
macAddress: "string",
deleteOnVmDeletion: false,
isSourceDestChecked: false,
nicId: "string",
linkPublicIps: [{
publicDnsName: "string",
publicIp: "string",
publicIpAccountId: "string",
}],
description: "string",
accountId: "string",
linkNics: [{
deleteOnVmDeletion: false,
deviceNumber: "string",
linkNicId: "string",
state: "string",
}],
privateDnsName: "string",
privateIps: [{
isPrimary: false,
linkPublicIps: [{
publicDnsName: "string",
publicIp: "string",
publicIpAccountId: "string",
}],
privateDnsName: "string",
privateIp: "string",
}],
secondaryPrivateIpCount: 0,
securityGroupIds: ["string"],
securityGroups: [{
securityGroupId: "string",
securityGroupName: "string",
}],
state: "string",
subnetId: "string",
}],
securityGroupNames: ["string"],
state: "string",
subnetId: "string",
tags: [{
key: "string",
value: "string",
}],
timeouts: {
create: "string",
"delete": "string",
read: "string",
update: "string",
},
userData: "string",
blockDeviceMappings: [{
bsu: {
deleteOnVmDeletion: false,
iops: 0,
snapshotId: "string",
tags: [{
key: "string",
value: "string",
}],
volumeSize: 0,
volumeType: "string",
},
deviceName: "string",
noDevice: "string",
virtualDeviceName: "string",
}],
vmInitiatedShutdownBehavior: "string",
placementSubregionName: "string",
});
type: outscale:Vm
properties:
blockDeviceMappings:
- bsu:
deleteOnVmDeletion: false
iops: 0
snapshotId: string
tags:
- key: string
value: string
volumeSize: 0
volumeType: string
deviceName: string
noDevice: string
virtualDeviceName: string
bsuOptimized: false
deletionProtection: false
getAdminPassword: false
imageId: string
isSourceDestChecked: false
keypairName: string
nestedVirtualization: false
nics:
- accountId: string
deleteOnVmDeletion: false
description: string
deviceNumber: 0
isSourceDestChecked: false
linkNics:
- deleteOnVmDeletion: false
deviceNumber: string
linkNicId: string
state: string
linkPublicIps:
- publicDnsName: string
publicIp: string
publicIpAccountId: string
macAddress: string
netId: string
nicId: string
privateDnsName: string
privateIps:
- isPrimary: false
linkPublicIps:
- publicDnsName: string
publicIp: string
publicIpAccountId: string
privateDnsName: string
privateIp: string
secondaryPrivateIpCount: 0
securityGroupIds:
- string
securityGroups:
- securityGroupId: string
securityGroupName: string
state: string
subnetId: string
outscaleVmId: string
performance: string
placementSubregionName: string
placementTenancy: string
primaryNics:
- accountId: string
deleteOnVmDeletion: false
description: string
deviceNumber: 0
isSourceDestChecked: false
linkNics:
- deleteOnVmDeletion: false
deviceNumber: string
linkNicId: string
state: string
linkPublicIps:
- publicDnsName: string
publicIp: string
publicIpAccountId: string
macAddress: string
netId: string
nicId: string
privateDnsName: string
privateIps:
- isPrimary: false
linkPublicIps:
- publicDnsName: string
publicIp: string
publicIpAccountId: string
privateDnsName: string
privateIp: string
secondaryPrivateIpCount: 0
securityGroupIds:
- string
securityGroups:
- securityGroupId: string
securityGroupName: string
state: string
subnetId: string
privateIps:
- string
securityGroupIds:
- string
securityGroupNames:
- string
state: string
subnetId: string
tags:
- key: string
value: string
timeouts:
create: string
delete: string
read: string
update: string
userData: string
vmId: string
vmInitiatedShutdownBehavior: string
vmType: string
Vm 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 Vm resource accepts the following input properties:
- Image
Id string - The ID of the OMI used to create the VM. You can find the list of OMIs by calling the ReadImages method.
- Block
Device List<VmMappings Block Device Mapping> - One or more block device mappings.
- Bsu
Optimized bool - Deletion
Protection bool - If true, you cannot delete the VM unless you change this parameter back to false.
- Get
Admin boolPassword - (Windows VM only) If true, waits for the administrator password of the VM to become available in order to retrieve the VM. The password is exported to the
admin_password
attribute. - Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Keypair
Name string - The name of the keypair.
- Nested
Virtualization bool - (dedicated tenancy only) If true, nested virtualization is enabled. If false, it is disabled.
- Nics
List<Vm
Nic> - One or more NICs. If you specify this parameter, you must not specify the
subnet_id
andsubregion_name
parameters. To define a NIC as the primary network interface of the VM, use theprimary_nic
argument. - Outscale
Vm stringId - Performance string
- The performance of the VM (
medium
|high
|highest
). Updating this parameter will trigger a stop/start of the VM. - Placement
Subregion stringName - The name of the Subregion where the VM is placed.
- Placement
Tenancy string - The tenancy of the VM (
default
|dedicated
). - Primary
Nics List<VmPrimary Nic> - The primary network interface of the VM.
- Private
Ips List<string> - One or more private IPs of the VM.
- Security
Group List<string>Ids - One or more IDs of security group for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - Security
Group List<string>Names - One or more names of security groups for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - Subnet
Id string - The ID of the Subnet in which you want to create the VM. If you specify this parameter, you must not specify the
nics
parameter. - List<Vm
Tag> - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Vm
Timeouts - User
Data string - Vm
Id string - The ID of the VM.
- Vm
Initiated stringShutdown Behavior - The VM behavior when you stop it. By default or if set to
stop
, the VM stops. If set torestart
, the VM stops then automatically restarts. If set toterminate
, the VM stops and is terminated. - Vm
Type string - The type of VM (
t2.small
by default). Updating this parameter will trigger a stop/start of the VM. For more information, see Instance Types.
- Image
Id string - The ID of the OMI used to create the VM. You can find the list of OMIs by calling the ReadImages method.
- Block
Device []VmMappings Block Device Mapping Args - One or more block device mappings.
- Bsu
Optimized bool - Deletion
Protection bool - If true, you cannot delete the VM unless you change this parameter back to false.
- Get
Admin boolPassword - (Windows VM only) If true, waits for the administrator password of the VM to become available in order to retrieve the VM. The password is exported to the
admin_password
attribute. - Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Keypair
Name string - The name of the keypair.
- Nested
Virtualization bool - (dedicated tenancy only) If true, nested virtualization is enabled. If false, it is disabled.
- Nics
[]Vm
Nic Args - One or more NICs. If you specify this parameter, you must not specify the
subnet_id
andsubregion_name
parameters. To define a NIC as the primary network interface of the VM, use theprimary_nic
argument. - Outscale
Vm stringId - Performance string
- The performance of the VM (
medium
|high
|highest
). Updating this parameter will trigger a stop/start of the VM. - Placement
Subregion stringName - The name of the Subregion where the VM is placed.
- Placement
Tenancy string - The tenancy of the VM (
default
|dedicated
). - Primary
Nics []VmPrimary Nic Args - The primary network interface of the VM.
- Private
Ips []string - One or more private IPs of the VM.
- Security
Group []stringIds - One or more IDs of security group for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - Security
Group []stringNames - One or more names of security groups for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - Subnet
Id string - The ID of the Subnet in which you want to create the VM. If you specify this parameter, you must not specify the
nics
parameter. - []Vm
Tag Args - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Vm
Timeouts Args - User
Data string - Vm
Id string - The ID of the VM.
- Vm
Initiated stringShutdown Behavior - The VM behavior when you stop it. By default or if set to
stop
, the VM stops. If set torestart
, the VM stops then automatically restarts. If set toterminate
, the VM stops and is terminated. - Vm
Type string - The type of VM (
t2.small
by default). Updating this parameter will trigger a stop/start of the VM. For more information, see Instance Types.
- image
Id String - The ID of the OMI used to create the VM. You can find the list of OMIs by calling the ReadImages method.
- block
Device List<VmMappings Block Device Mapping> - One or more block device mappings.
- bsu
Optimized Boolean - deletion
Protection Boolean - If true, you cannot delete the VM unless you change this parameter back to false.
- get
Admin BooleanPassword - (Windows VM only) If true, waits for the administrator password of the VM to become available in order to retrieve the VM. The password is exported to the
admin_password
attribute. - is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- keypair
Name String - The name of the keypair.
- nested
Virtualization Boolean - (dedicated tenancy only) If true, nested virtualization is enabled. If false, it is disabled.
- nics
List<Vm
Nic> - One or more NICs. If you specify this parameter, you must not specify the
subnet_id
andsubregion_name
parameters. To define a NIC as the primary network interface of the VM, use theprimary_nic
argument. - outscale
Vm StringId - performance String
- The performance of the VM (
medium
|high
|highest
). Updating this parameter will trigger a stop/start of the VM. - placement
Subregion StringName - The name of the Subregion where the VM is placed.
- placement
Tenancy String - The tenancy of the VM (
default
|dedicated
). - primary
Nics List<VmPrimary Nic> - The primary network interface of the VM.
- private
Ips List<String> - One or more private IPs of the VM.
- security
Group List<String>Ids - One or more IDs of security group for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - security
Group List<String>Names - One or more names of security groups for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - subnet
Id String - The ID of the Subnet in which you want to create the VM. If you specify this parameter, you must not specify the
nics
parameter. - List<Vm
Tag> - A tag to add to this resource. You can specify this argument several times.
- timeouts
Vm
Timeouts - user
Data String - vm
Id String - The ID of the VM.
- vm
Initiated StringShutdown Behavior - The VM behavior when you stop it. By default or if set to
stop
, the VM stops. If set torestart
, the VM stops then automatically restarts. If set toterminate
, the VM stops and is terminated. - vm
Type String - The type of VM (
t2.small
by default). Updating this parameter will trigger a stop/start of the VM. For more information, see Instance Types.
- image
Id string - The ID of the OMI used to create the VM. You can find the list of OMIs by calling the ReadImages method.
- block
Device VmMappings Block Device Mapping[] - One or more block device mappings.
- bsu
Optimized boolean - deletion
Protection boolean - If true, you cannot delete the VM unless you change this parameter back to false.
- get
Admin booleanPassword - (Windows VM only) If true, waits for the administrator password of the VM to become available in order to retrieve the VM. The password is exported to the
admin_password
attribute. - is
Source booleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- keypair
Name string - The name of the keypair.
- nested
Virtualization boolean - (dedicated tenancy only) If true, nested virtualization is enabled. If false, it is disabled.
- nics
Vm
Nic[] - One or more NICs. If you specify this parameter, you must not specify the
subnet_id
andsubregion_name
parameters. To define a NIC as the primary network interface of the VM, use theprimary_nic
argument. - outscale
Vm stringId - performance string
- The performance of the VM (
medium
|high
|highest
). Updating this parameter will trigger a stop/start of the VM. - placement
Subregion stringName - The name of the Subregion where the VM is placed.
- placement
Tenancy string - The tenancy of the VM (
default
|dedicated
). - primary
Nics VmPrimary Nic[] - The primary network interface of the VM.
- private
Ips string[] - One or more private IPs of the VM.
- security
Group string[]Ids - One or more IDs of security group for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - security
Group string[]Names - One or more names of security groups for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - state string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - subnet
Id string - The ID of the Subnet in which you want to create the VM. If you specify this parameter, you must not specify the
nics
parameter. - Vm
Tag[] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Vm
Timeouts - user
Data string - vm
Id string - The ID of the VM.
- vm
Initiated stringShutdown Behavior - The VM behavior when you stop it. By default or if set to
stop
, the VM stops. If set torestart
, the VM stops then automatically restarts. If set toterminate
, the VM stops and is terminated. - vm
Type string - The type of VM (
t2.small
by default). Updating this parameter will trigger a stop/start of the VM. For more information, see Instance Types.
- image_
id str - The ID of the OMI used to create the VM. You can find the list of OMIs by calling the ReadImages method.
- block_
device_ Sequence[Vmmappings Block Device Mapping Args] - One or more block device mappings.
- bsu_
optimized bool - deletion_
protection bool - If true, you cannot delete the VM unless you change this parameter back to false.
- get_
admin_ boolpassword - (Windows VM only) If true, waits for the administrator password of the VM to become available in order to retrieve the VM. The password is exported to the
admin_password
attribute. - is_
source_ booldest_ checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- keypair_
name str - The name of the keypair.
- nested_
virtualization bool - (dedicated tenancy only) If true, nested virtualization is enabled. If false, it is disabled.
- nics
Sequence[Vm
Nic Args] - One or more NICs. If you specify this parameter, you must not specify the
subnet_id
andsubregion_name
parameters. To define a NIC as the primary network interface of the VM, use theprimary_nic
argument. - outscale_
vm_ strid - performance str
- The performance of the VM (
medium
|high
|highest
). Updating this parameter will trigger a stop/start of the VM. - placement_
subregion_ strname - The name of the Subregion where the VM is placed.
- placement_
tenancy str - The tenancy of the VM (
default
|dedicated
). - primary_
nics Sequence[VmPrimary Nic Args] - The primary network interface of the VM.
- private_
ips Sequence[str] - One or more private IPs of the VM.
- security_
group_ Sequence[str]ids - One or more IDs of security group for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - security_
group_ Sequence[str]names - One or more names of security groups for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - state str
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - subnet_
id str - The ID of the Subnet in which you want to create the VM. If you specify this parameter, you must not specify the
nics
parameter. - Sequence[Vm
Tag Args] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Vm
Timeouts Args - user_
data str - vm_
id str - The ID of the VM.
- vm_
initiated_ strshutdown_ behavior - The VM behavior when you stop it. By default or if set to
stop
, the VM stops. If set torestart
, the VM stops then automatically restarts. If set toterminate
, the VM stops and is terminated. - vm_
type str - The type of VM (
t2.small
by default). Updating this parameter will trigger a stop/start of the VM. For more information, see Instance Types.
- image
Id String - The ID of the OMI used to create the VM. You can find the list of OMIs by calling the ReadImages method.
- block
Device List<Property Map>Mappings - One or more block device mappings.
- bsu
Optimized Boolean - deletion
Protection Boolean - If true, you cannot delete the VM unless you change this parameter back to false.
- get
Admin BooleanPassword - (Windows VM only) If true, waits for the administrator password of the VM to become available in order to retrieve the VM. The password is exported to the
admin_password
attribute. - is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- keypair
Name String - The name of the keypair.
- nested
Virtualization Boolean - (dedicated tenancy only) If true, nested virtualization is enabled. If false, it is disabled.
- nics List<Property Map>
- One or more NICs. If you specify this parameter, you must not specify the
subnet_id
andsubregion_name
parameters. To define a NIC as the primary network interface of the VM, use theprimary_nic
argument. - outscale
Vm StringId - performance String
- The performance of the VM (
medium
|high
|highest
). Updating this parameter will trigger a stop/start of the VM. - placement
Subregion StringName - The name of the Subregion where the VM is placed.
- placement
Tenancy String - The tenancy of the VM (
default
|dedicated
). - primary
Nics List<Property Map> - The primary network interface of the VM.
- private
Ips List<String> - One or more private IPs of the VM.
- security
Group List<String>Ids - One or more IDs of security group for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - security
Group List<String>Names - One or more names of security groups for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - subnet
Id String - The ID of the Subnet in which you want to create the VM. If you specify this parameter, you must not specify the
nics
parameter. - List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
- timeouts Property Map
- user
Data String - vm
Id String - The ID of the VM.
- vm
Initiated StringShutdown Behavior - The VM behavior when you stop it. By default or if set to
stop
, the VM stops. If set torestart
, the VM stops then automatically restarts. If set toterminate
, the VM stops and is terminated. - vm
Type String - The type of VM (
t2.small
by default). Updating this parameter will trigger a stop/start of the VM. For more information, see Instance Types.
Outputs
All input properties are implicitly available as output properties. Additionally, the Vm resource produces the following output properties:
- Admin
Password string - Architecture string
- The architecture of the VM (
i386
|x86_64
). - Block
Device List<VmMappings Createds Block Device Mappings Created> - The block device mapping of the VM.
- Client
Token string - A unique identifier which enables you to manage the idempotency.
- Creation
Date string - The date and time (UTC) at which the VM was created.
- Hypervisor string
- The hypervisor type of the VMs (
ovm
|xen
). - Id string
- The provider-assigned unique ID for this managed resource.
- Launch
Number double - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - Net
Id string - The ID of the Net for the NIC.
- Os
Family string - Indicates the operating system (OS) of the VM.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The primary private IP of the VM.
- Product
Codes List<string> - The product codes associated with the OMI used to create the VM.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Request
Id string - Reservation
Id string - The reservation ID of the VM.
- Root
Device stringName - The name of the root device for the VM (for example,
/dev/sda1
). - Root
Device stringType - The type of root device used by the VM (always
bsu
). - Security
Groups List<VmSecurity Group> - One or more security groups associated with the VM.
- State
Reason string - The reason explaining the current state of the VM.
- Admin
Password string - Architecture string
- The architecture of the VM (
i386
|x86_64
). - Block
Device []VmMappings Createds Block Device Mappings Created - The block device mapping of the VM.
- Client
Token string - A unique identifier which enables you to manage the idempotency.
- Creation
Date string - The date and time (UTC) at which the VM was created.
- Hypervisor string
- The hypervisor type of the VMs (
ovm
|xen
). - Id string
- The provider-assigned unique ID for this managed resource.
- Launch
Number float64 - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - Net
Id string - The ID of the Net for the NIC.
- Os
Family string - Indicates the operating system (OS) of the VM.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The primary private IP of the VM.
- Product
Codes []string - The product codes associated with the OMI used to create the VM.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Request
Id string - Reservation
Id string - The reservation ID of the VM.
- Root
Device stringName - The name of the root device for the VM (for example,
/dev/sda1
). - Root
Device stringType - The type of root device used by the VM (always
bsu
). - Security
Groups []VmSecurity Group - One or more security groups associated with the VM.
- State
Reason string - The reason explaining the current state of the VM.
- admin
Password String - architecture String
- The architecture of the VM (
i386
|x86_64
). - block
Device List<VmMappings Createds Block Device Mappings Created> - The block device mapping of the VM.
- client
Token String - A unique identifier which enables you to manage the idempotency.
- creation
Date String - The date and time (UTC) at which the VM was created.
- hypervisor String
- The hypervisor type of the VMs (
ovm
|xen
). - id String
- The provider-assigned unique ID for this managed resource.
- launch
Number Double - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - net
Id String - The ID of the Net for the NIC.
- os
Family String - Indicates the operating system (OS) of the VM.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The primary private IP of the VM.
- product
Codes List<String> - The product codes associated with the OMI used to create the VM.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- request
Id String - reservation
Id String - The reservation ID of the VM.
- root
Device StringName - The name of the root device for the VM (for example,
/dev/sda1
). - root
Device StringType - The type of root device used by the VM (always
bsu
). - security
Groups List<VmSecurity Group> - One or more security groups associated with the VM.
- state
Reason String - The reason explaining the current state of the VM.
- admin
Password string - architecture string
- The architecture of the VM (
i386
|x86_64
). - block
Device VmMappings Createds Block Device Mappings Created[] - The block device mapping of the VM.
- client
Token string - A unique identifier which enables you to manage the idempotency.
- creation
Date string - The date and time (UTC) at which the VM was created.
- hypervisor string
- The hypervisor type of the VMs (
ovm
|xen
). - id string
- The provider-assigned unique ID for this managed resource.
- launch
Number number - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - net
Id string - The ID of the Net for the NIC.
- os
Family string - Indicates the operating system (OS) of the VM.
- private
Dns stringName - The name of the private DNS.
- private
Ip string - The primary private IP of the VM.
- product
Codes string[] - The product codes associated with the OMI used to create the VM.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP of the VM.
- request
Id string - reservation
Id string - The reservation ID of the VM.
- root
Device stringName - The name of the root device for the VM (for example,
/dev/sda1
). - root
Device stringType - The type of root device used by the VM (always
bsu
). - security
Groups VmSecurity Group[] - One or more security groups associated with the VM.
- state
Reason string - The reason explaining the current state of the VM.
- admin_
password str - architecture str
- The architecture of the VM (
i386
|x86_64
). - block_
device_ Sequence[Vmmappings_ createds Block Device Mappings Created] - The block device mapping of the VM.
- client_
token str - A unique identifier which enables you to manage the idempotency.
- creation_
date str - The date and time (UTC) at which the VM was created.
- hypervisor str
- The hypervisor type of the VMs (
ovm
|xen
). - id str
- The provider-assigned unique ID for this managed resource.
- launch_
number float - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - net_
id str - The ID of the Net for the NIC.
- os_
family str - Indicates the operating system (OS) of the VM.
- private_
dns_ strname - The name of the private DNS.
- private_
ip str - The primary private IP of the VM.
- product_
codes Sequence[str] - The product codes associated with the OMI used to create the VM.
- public_
dns_ strname - The name of the public DNS.
- public_
ip str - The public IP of the VM.
- request_
id str - reservation_
id str - The reservation ID of the VM.
- root_
device_ strname - The name of the root device for the VM (for example,
/dev/sda1
). - root_
device_ strtype - The type of root device used by the VM (always
bsu
). - security_
groups Sequence[VmSecurity Group] - One or more security groups associated with the VM.
- state_
reason str - The reason explaining the current state of the VM.
- admin
Password String - architecture String
- The architecture of the VM (
i386
|x86_64
). - block
Device List<Property Map>Mappings Createds - The block device mapping of the VM.
- client
Token String - A unique identifier which enables you to manage the idempotency.
- creation
Date String - The date and time (UTC) at which the VM was created.
- hypervisor String
- The hypervisor type of the VMs (
ovm
|xen
). - id String
- The provider-assigned unique ID for this managed resource.
- launch
Number Number - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - net
Id String - The ID of the Net for the NIC.
- os
Family String - Indicates the operating system (OS) of the VM.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The primary private IP of the VM.
- product
Codes List<String> - The product codes associated with the OMI used to create the VM.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- request
Id String - reservation
Id String - The reservation ID of the VM.
- root
Device StringName - The name of the root device for the VM (for example,
/dev/sda1
). - root
Device StringType - The type of root device used by the VM (always
bsu
). - security
Groups List<Property Map> - One or more security groups associated with the VM.
- state
Reason String - The reason explaining the current state of the VM.
Look up Existing Vm Resource
Get an existing Vm 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?: VmState, opts?: CustomResourceOptions): Vm
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
admin_password: Optional[str] = None,
architecture: Optional[str] = None,
block_device_mappings: Optional[Sequence[VmBlockDeviceMappingArgs]] = None,
block_device_mappings_createds: Optional[Sequence[VmBlockDeviceMappingsCreatedArgs]] = None,
bsu_optimized: Optional[bool] = None,
client_token: Optional[str] = None,
creation_date: Optional[str] = None,
deletion_protection: Optional[bool] = None,
get_admin_password: Optional[bool] = None,
hypervisor: Optional[str] = None,
image_id: Optional[str] = None,
is_source_dest_checked: Optional[bool] = None,
keypair_name: Optional[str] = None,
launch_number: Optional[float] = None,
nested_virtualization: Optional[bool] = None,
net_id: Optional[str] = None,
nics: Optional[Sequence[VmNicArgs]] = None,
os_family: Optional[str] = None,
outscale_vm_id: Optional[str] = None,
performance: Optional[str] = None,
placement_subregion_name: Optional[str] = None,
placement_tenancy: Optional[str] = None,
primary_nics: Optional[Sequence[VmPrimaryNicArgs]] = None,
private_dns_name: Optional[str] = None,
private_ip: Optional[str] = None,
private_ips: Optional[Sequence[str]] = None,
product_codes: Optional[Sequence[str]] = None,
public_dns_name: Optional[str] = None,
public_ip: Optional[str] = None,
request_id: Optional[str] = None,
reservation_id: Optional[str] = None,
root_device_name: Optional[str] = None,
root_device_type: Optional[str] = None,
security_group_ids: Optional[Sequence[str]] = None,
security_group_names: Optional[Sequence[str]] = None,
security_groups: Optional[Sequence[VmSecurityGroupArgs]] = None,
state: Optional[str] = None,
state_reason: Optional[str] = None,
subnet_id: Optional[str] = None,
tags: Optional[Sequence[VmTagArgs]] = None,
timeouts: Optional[VmTimeoutsArgs] = None,
user_data: Optional[str] = None,
vm_id: Optional[str] = None,
vm_initiated_shutdown_behavior: Optional[str] = None,
vm_type: Optional[str] = None) -> Vm
func GetVm(ctx *Context, name string, id IDInput, state *VmState, opts ...ResourceOption) (*Vm, error)
public static Vm Get(string name, Input<string> id, VmState? state, CustomResourceOptions? opts = null)
public static Vm get(String name, Output<String> id, VmState state, CustomResourceOptions options)
resources: _: type: outscale:Vm 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.
- Admin
Password string - Architecture string
- The architecture of the VM (
i386
|x86_64
). - Block
Device List<VmMappings Block Device Mapping> - One or more block device mappings.
- Block
Device List<VmMappings Createds Block Device Mappings Created> - The block device mapping of the VM.
- Bsu
Optimized bool - Client
Token string - A unique identifier which enables you to manage the idempotency.
- Creation
Date string - The date and time (UTC) at which the VM was created.
- Deletion
Protection bool - If true, you cannot delete the VM unless you change this parameter back to false.
- Get
Admin boolPassword - (Windows VM only) If true, waits for the administrator password of the VM to become available in order to retrieve the VM. The password is exported to the
admin_password
attribute. - Hypervisor string
- The hypervisor type of the VMs (
ovm
|xen
). - Image
Id string - The ID of the OMI used to create the VM. You can find the list of OMIs by calling the ReadImages method.
- Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Keypair
Name string - The name of the keypair.
- Launch
Number double - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - Nested
Virtualization bool - (dedicated tenancy only) If true, nested virtualization is enabled. If false, it is disabled.
- Net
Id string - The ID of the Net for the NIC.
- Nics
List<Vm
Nic> - One or more NICs. If you specify this parameter, you must not specify the
subnet_id
andsubregion_name
parameters. To define a NIC as the primary network interface of the VM, use theprimary_nic
argument. - Os
Family string - Indicates the operating system (OS) of the VM.
- Outscale
Vm stringId - Performance string
- The performance of the VM (
medium
|high
|highest
). Updating this parameter will trigger a stop/start of the VM. - Placement
Subregion stringName - The name of the Subregion where the VM is placed.
- Placement
Tenancy string - The tenancy of the VM (
default
|dedicated
). - Primary
Nics List<VmPrimary Nic> - The primary network interface of the VM.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The primary private IP of the VM.
- Private
Ips List<string> - One or more private IPs of the VM.
- Product
Codes List<string> - The product codes associated with the OMI used to create the VM.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Request
Id string - Reservation
Id string - The reservation ID of the VM.
- Root
Device stringName - The name of the root device for the VM (for example,
/dev/sda1
). - Root
Device stringType - The type of root device used by the VM (always
bsu
). - Security
Group List<string>Ids - One or more IDs of security group for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - Security
Group List<string>Names - One or more names of security groups for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - Security
Groups List<VmSecurity Group> - One or more security groups associated with the VM.
- State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - State
Reason string - The reason explaining the current state of the VM.
- Subnet
Id string - The ID of the Subnet in which you want to create the VM. If you specify this parameter, you must not specify the
nics
parameter. - List<Vm
Tag> - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Vm
Timeouts - User
Data string - Vm
Id string - The ID of the VM.
- Vm
Initiated stringShutdown Behavior - The VM behavior when you stop it. By default or if set to
stop
, the VM stops. If set torestart
, the VM stops then automatically restarts. If set toterminate
, the VM stops and is terminated. - Vm
Type string - The type of VM (
t2.small
by default). Updating this parameter will trigger a stop/start of the VM. For more information, see Instance Types.
- Admin
Password string - Architecture string
- The architecture of the VM (
i386
|x86_64
). - Block
Device []VmMappings Block Device Mapping Args - One or more block device mappings.
- Block
Device []VmMappings Createds Block Device Mappings Created Args - The block device mapping of the VM.
- Bsu
Optimized bool - Client
Token string - A unique identifier which enables you to manage the idempotency.
- Creation
Date string - The date and time (UTC) at which the VM was created.
- Deletion
Protection bool - If true, you cannot delete the VM unless you change this parameter back to false.
- Get
Admin boolPassword - (Windows VM only) If true, waits for the administrator password of the VM to become available in order to retrieve the VM. The password is exported to the
admin_password
attribute. - Hypervisor string
- The hypervisor type of the VMs (
ovm
|xen
). - Image
Id string - The ID of the OMI used to create the VM. You can find the list of OMIs by calling the ReadImages method.
- Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Keypair
Name string - The name of the keypair.
- Launch
Number float64 - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - Nested
Virtualization bool - (dedicated tenancy only) If true, nested virtualization is enabled. If false, it is disabled.
- Net
Id string - The ID of the Net for the NIC.
- Nics
[]Vm
Nic Args - One or more NICs. If you specify this parameter, you must not specify the
subnet_id
andsubregion_name
parameters. To define a NIC as the primary network interface of the VM, use theprimary_nic
argument. - Os
Family string - Indicates the operating system (OS) of the VM.
- Outscale
Vm stringId - Performance string
- The performance of the VM (
medium
|high
|highest
). Updating this parameter will trigger a stop/start of the VM. - Placement
Subregion stringName - The name of the Subregion where the VM is placed.
- Placement
Tenancy string - The tenancy of the VM (
default
|dedicated
). - Primary
Nics []VmPrimary Nic Args - The primary network interface of the VM.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The primary private IP of the VM.
- Private
Ips []string - One or more private IPs of the VM.
- Product
Codes []string - The product codes associated with the OMI used to create the VM.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Request
Id string - Reservation
Id string - The reservation ID of the VM.
- Root
Device stringName - The name of the root device for the VM (for example,
/dev/sda1
). - Root
Device stringType - The type of root device used by the VM (always
bsu
). - Security
Group []stringIds - One or more IDs of security group for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - Security
Group []stringNames - One or more names of security groups for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - Security
Groups []VmSecurity Group Args - One or more security groups associated with the VM.
- State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - State
Reason string - The reason explaining the current state of the VM.
- Subnet
Id string - The ID of the Subnet in which you want to create the VM. If you specify this parameter, you must not specify the
nics
parameter. - []Vm
Tag Args - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Vm
Timeouts Args - User
Data string - Vm
Id string - The ID of the VM.
- Vm
Initiated stringShutdown Behavior - The VM behavior when you stop it. By default or if set to
stop
, the VM stops. If set torestart
, the VM stops then automatically restarts. If set toterminate
, the VM stops and is terminated. - Vm
Type string - The type of VM (
t2.small
by default). Updating this parameter will trigger a stop/start of the VM. For more information, see Instance Types.
- admin
Password String - architecture String
- The architecture of the VM (
i386
|x86_64
). - block
Device List<VmMappings Block Device Mapping> - One or more block device mappings.
- block
Device List<VmMappings Createds Block Device Mappings Created> - The block device mapping of the VM.
- bsu
Optimized Boolean - client
Token String - A unique identifier which enables you to manage the idempotency.
- creation
Date String - The date and time (UTC) at which the VM was created.
- deletion
Protection Boolean - If true, you cannot delete the VM unless you change this parameter back to false.
- get
Admin BooleanPassword - (Windows VM only) If true, waits for the administrator password of the VM to become available in order to retrieve the VM. The password is exported to the
admin_password
attribute. - hypervisor String
- The hypervisor type of the VMs (
ovm
|xen
). - image
Id String - The ID of the OMI used to create the VM. You can find the list of OMIs by calling the ReadImages method.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- keypair
Name String - The name of the keypair.
- launch
Number Double - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - nested
Virtualization Boolean - (dedicated tenancy only) If true, nested virtualization is enabled. If false, it is disabled.
- net
Id String - The ID of the Net for the NIC.
- nics
List<Vm
Nic> - One or more NICs. If you specify this parameter, you must not specify the
subnet_id
andsubregion_name
parameters. To define a NIC as the primary network interface of the VM, use theprimary_nic
argument. - os
Family String - Indicates the operating system (OS) of the VM.
- outscale
Vm StringId - performance String
- The performance of the VM (
medium
|high
|highest
). Updating this parameter will trigger a stop/start of the VM. - placement
Subregion StringName - The name of the Subregion where the VM is placed.
- placement
Tenancy String - The tenancy of the VM (
default
|dedicated
). - primary
Nics List<VmPrimary Nic> - The primary network interface of the VM.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The primary private IP of the VM.
- private
Ips List<String> - One or more private IPs of the VM.
- product
Codes List<String> - The product codes associated with the OMI used to create the VM.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- request
Id String - reservation
Id String - The reservation ID of the VM.
- root
Device StringName - The name of the root device for the VM (for example,
/dev/sda1
). - root
Device StringType - The type of root device used by the VM (always
bsu
). - security
Group List<String>Ids - One or more IDs of security group for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - security
Group List<String>Names - One or more names of security groups for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - security
Groups List<VmSecurity Group> - One or more security groups associated with the VM.
- state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - state
Reason String - The reason explaining the current state of the VM.
- subnet
Id String - The ID of the Subnet in which you want to create the VM. If you specify this parameter, you must not specify the
nics
parameter. - List<Vm
Tag> - A tag to add to this resource. You can specify this argument several times.
- timeouts
Vm
Timeouts - user
Data String - vm
Id String - The ID of the VM.
- vm
Initiated StringShutdown Behavior - The VM behavior when you stop it. By default or if set to
stop
, the VM stops. If set torestart
, the VM stops then automatically restarts. If set toterminate
, the VM stops and is terminated. - vm
Type String - The type of VM (
t2.small
by default). Updating this parameter will trigger a stop/start of the VM. For more information, see Instance Types.
- admin
Password string - architecture string
- The architecture of the VM (
i386
|x86_64
). - block
Device VmMappings Block Device Mapping[] - One or more block device mappings.
- block
Device VmMappings Createds Block Device Mappings Created[] - The block device mapping of the VM.
- bsu
Optimized boolean - client
Token string - A unique identifier which enables you to manage the idempotency.
- creation
Date string - The date and time (UTC) at which the VM was created.
- deletion
Protection boolean - If true, you cannot delete the VM unless you change this parameter back to false.
- get
Admin booleanPassword - (Windows VM only) If true, waits for the administrator password of the VM to become available in order to retrieve the VM. The password is exported to the
admin_password
attribute. - hypervisor string
- The hypervisor type of the VMs (
ovm
|xen
). - image
Id string - The ID of the OMI used to create the VM. You can find the list of OMIs by calling the ReadImages method.
- is
Source booleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- keypair
Name string - The name of the keypair.
- launch
Number number - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - nested
Virtualization boolean - (dedicated tenancy only) If true, nested virtualization is enabled. If false, it is disabled.
- net
Id string - The ID of the Net for the NIC.
- nics
Vm
Nic[] - One or more NICs. If you specify this parameter, you must not specify the
subnet_id
andsubregion_name
parameters. To define a NIC as the primary network interface of the VM, use theprimary_nic
argument. - os
Family string - Indicates the operating system (OS) of the VM.
- outscale
Vm stringId - performance string
- The performance of the VM (
medium
|high
|highest
). Updating this parameter will trigger a stop/start of the VM. - placement
Subregion stringName - The name of the Subregion where the VM is placed.
- placement
Tenancy string - The tenancy of the VM (
default
|dedicated
). - primary
Nics VmPrimary Nic[] - The primary network interface of the VM.
- private
Dns stringName - The name of the private DNS.
- private
Ip string - The primary private IP of the VM.
- private
Ips string[] - One or more private IPs of the VM.
- product
Codes string[] - The product codes associated with the OMI used to create the VM.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP of the VM.
- request
Id string - reservation
Id string - The reservation ID of the VM.
- root
Device stringName - The name of the root device for the VM (for example,
/dev/sda1
). - root
Device stringType - The type of root device used by the VM (always
bsu
). - security
Group string[]Ids - One or more IDs of security group for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - security
Group string[]Names - One or more names of security groups for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - security
Groups VmSecurity Group[] - One or more security groups associated with the VM.
- state string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - state
Reason string - The reason explaining the current state of the VM.
- subnet
Id string - The ID of the Subnet in which you want to create the VM. If you specify this parameter, you must not specify the
nics
parameter. - Vm
Tag[] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Vm
Timeouts - user
Data string - vm
Id string - The ID of the VM.
- vm
Initiated stringShutdown Behavior - The VM behavior when you stop it. By default or if set to
stop
, the VM stops. If set torestart
, the VM stops then automatically restarts. If set toterminate
, the VM stops and is terminated. - vm
Type string - The type of VM (
t2.small
by default). Updating this parameter will trigger a stop/start of the VM. For more information, see Instance Types.
- admin_
password str - architecture str
- The architecture of the VM (
i386
|x86_64
). - block_
device_ Sequence[Vmmappings Block Device Mapping Args] - One or more block device mappings.
- block_
device_ Sequence[Vmmappings_ createds Block Device Mappings Created Args] - The block device mapping of the VM.
- bsu_
optimized bool - client_
token str - A unique identifier which enables you to manage the idempotency.
- creation_
date str - The date and time (UTC) at which the VM was created.
- deletion_
protection bool - If true, you cannot delete the VM unless you change this parameter back to false.
- get_
admin_ boolpassword - (Windows VM only) If true, waits for the administrator password of the VM to become available in order to retrieve the VM. The password is exported to the
admin_password
attribute. - hypervisor str
- The hypervisor type of the VMs (
ovm
|xen
). - image_
id str - The ID of the OMI used to create the VM. You can find the list of OMIs by calling the ReadImages method.
- is_
source_ booldest_ checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- keypair_
name str - The name of the keypair.
- launch_
number float - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - nested_
virtualization bool - (dedicated tenancy only) If true, nested virtualization is enabled. If false, it is disabled.
- net_
id str - The ID of the Net for the NIC.
- nics
Sequence[Vm
Nic Args] - One or more NICs. If you specify this parameter, you must not specify the
subnet_id
andsubregion_name
parameters. To define a NIC as the primary network interface of the VM, use theprimary_nic
argument. - os_
family str - Indicates the operating system (OS) of the VM.
- outscale_
vm_ strid - performance str
- The performance of the VM (
medium
|high
|highest
). Updating this parameter will trigger a stop/start of the VM. - placement_
subregion_ strname - The name of the Subregion where the VM is placed.
- placement_
tenancy str - The tenancy of the VM (
default
|dedicated
). - primary_
nics Sequence[VmPrimary Nic Args] - The primary network interface of the VM.
- private_
dns_ strname - The name of the private DNS.
- private_
ip str - The primary private IP of the VM.
- private_
ips Sequence[str] - One or more private IPs of the VM.
- product_
codes Sequence[str] - The product codes associated with the OMI used to create the VM.
- public_
dns_ strname - The name of the public DNS.
- public_
ip str - The public IP of the VM.
- request_
id str - reservation_
id str - The reservation ID of the VM.
- root_
device_ strname - The name of the root device for the VM (for example,
/dev/sda1
). - root_
device_ strtype - The type of root device used by the VM (always
bsu
). - security_
group_ Sequence[str]ids - One or more IDs of security group for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - security_
group_ Sequence[str]names - One or more names of security groups for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - security_
groups Sequence[VmSecurity Group Args] - One or more security groups associated with the VM.
- state str
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - state_
reason str - The reason explaining the current state of the VM.
- subnet_
id str - The ID of the Subnet in which you want to create the VM. If you specify this parameter, you must not specify the
nics
parameter. - Sequence[Vm
Tag Args] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Vm
Timeouts Args - user_
data str - vm_
id str - The ID of the VM.
- vm_
initiated_ strshutdown_ behavior - The VM behavior when you stop it. By default or if set to
stop
, the VM stops. If set torestart
, the VM stops then automatically restarts. If set toterminate
, the VM stops and is terminated. - vm_
type str - The type of VM (
t2.small
by default). Updating this parameter will trigger a stop/start of the VM. For more information, see Instance Types.
- admin
Password String - architecture String
- The architecture of the VM (
i386
|x86_64
). - block
Device List<Property Map>Mappings - One or more block device mappings.
- block
Device List<Property Map>Mappings Createds - The block device mapping of the VM.
- bsu
Optimized Boolean - client
Token String - A unique identifier which enables you to manage the idempotency.
- creation
Date String - The date and time (UTC) at which the VM was created.
- deletion
Protection Boolean - If true, you cannot delete the VM unless you change this parameter back to false.
- get
Admin BooleanPassword - (Windows VM only) If true, waits for the administrator password of the VM to become available in order to retrieve the VM. The password is exported to the
admin_password
attribute. - hypervisor String
- The hypervisor type of the VMs (
ovm
|xen
). - image
Id String - The ID of the OMI used to create the VM. You can find the list of OMIs by calling the ReadImages method.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- keypair
Name String - The name of the keypair.
- launch
Number Number - The number for the VM when launching a group of several VMs (for example,
0
,1
,2
, and so on). - nested
Virtualization Boolean - (dedicated tenancy only) If true, nested virtualization is enabled. If false, it is disabled.
- net
Id String - The ID of the Net for the NIC.
- nics List<Property Map>
- One or more NICs. If you specify this parameter, you must not specify the
subnet_id
andsubregion_name
parameters. To define a NIC as the primary network interface of the VM, use theprimary_nic
argument. - os
Family String - Indicates the operating system (OS) of the VM.
- outscale
Vm StringId - performance String
- The performance of the VM (
medium
|high
|highest
). Updating this parameter will trigger a stop/start of the VM. - placement
Subregion StringName - The name of the Subregion where the VM is placed.
- placement
Tenancy String - The tenancy of the VM (
default
|dedicated
). - primary
Nics List<Property Map> - The primary network interface of the VM.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The primary private IP of the VM.
- private
Ips List<String> - One or more private IPs of the VM.
- product
Codes List<String> - The product codes associated with the OMI used to create the VM.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- request
Id String - reservation
Id String - The reservation ID of the VM.
- root
Device StringName - The name of the root device for the VM (for example,
/dev/sda1
). - root
Device StringType - The type of root device used by the VM (always
bsu
). - security
Group List<String>Ids - One or more IDs of security group for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - security
Group List<String>Names - One or more names of security groups for the VMs. You must specify at least one of the following parameters:
security_group_ids
orsecurity_group_names
. - security
Groups List<Property Map> - One or more security groups associated with the VM.
- state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - state
Reason String - The reason explaining the current state of the VM.
- subnet
Id String - The ID of the Subnet in which you want to create the VM. If you specify this parameter, you must not specify the
nics
parameter. - List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
- timeouts Property Map
- user
Data String - vm
Id String - The ID of the VM.
- vm
Initiated StringShutdown Behavior - The VM behavior when you stop it. By default or if set to
stop
, the VM stops. If set torestart
, the VM stops then automatically restarts. If set toterminate
, the VM stops and is terminated. - vm
Type String - The type of VM (
t2.small
by default). Updating this parameter will trigger a stop/start of the VM. For more information, see Instance Types.
Supporting Types
VmBlockDeviceMapping, VmBlockDeviceMappingArgs
- Bsu
Vm
Block Device Mapping Bsu - Information about the BSU volume to create.
- Device
Name string - The name of the device.
- No
Device string - Virtual
Device stringName
- Bsu
Vm
Block Device Mapping Bsu - Information about the BSU volume to create.
- Device
Name string - The name of the device.
- No
Device string - Virtual
Device stringName
- bsu
Vm
Block Device Mapping Bsu - Information about the BSU volume to create.
- device
Name String - The name of the device.
- no
Device String - virtual
Device StringName
- bsu
Vm
Block Device Mapping Bsu - Information about the BSU volume to create.
- device
Name string - The name of the device.
- no
Device string - virtual
Device stringName
- bsu
Vm
Block Device Mapping Bsu - Information about the BSU volume to create.
- device_
name str - The name of the device.
- no_
device str - virtual_
device_ strname
- bsu Property Map
- Information about the BSU volume to create.
- device
Name String - The name of the device.
- no
Device String - virtual
Device StringName
VmBlockDeviceMappingBsu, VmBlockDeviceMappingBsuArgs
- Delete
On boolVm Deletion - By default or if set to true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
- Iops double
- The number of I/O operations per second (IOPS). This parameter must be specified only if you create an
io1
volume. The maximum number of IOPS allowed forio1
volumes is13000
with a maximum performance ratio of 300 IOPS per gibibyte. - Snapshot
Id string - The ID of the snapshot used to create the volume.
- List<Vm
Block Device Mapping Bsu Tag> - One or more tags associated with the VM.
- Volume
Size double - The size of the volume, in gibibytes (GiB).
- Volume
Type string
- Delete
On boolVm Deletion - By default or if set to true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
- Iops float64
- The number of I/O operations per second (IOPS). This parameter must be specified only if you create an
io1
volume. The maximum number of IOPS allowed forio1
volumes is13000
with a maximum performance ratio of 300 IOPS per gibibyte. - Snapshot
Id string - The ID of the snapshot used to create the volume.
- []Vm
Block Device Mapping Bsu Tag - One or more tags associated with the VM.
- Volume
Size float64 - The size of the volume, in gibibytes (GiB).
- Volume
Type string
- delete
On BooleanVm Deletion - By default or if set to true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
- iops Double
- The number of I/O operations per second (IOPS). This parameter must be specified only if you create an
io1
volume. The maximum number of IOPS allowed forio1
volumes is13000
with a maximum performance ratio of 300 IOPS per gibibyte. - snapshot
Id String - The ID of the snapshot used to create the volume.
- List<Vm
Block Device Mapping Bsu Tag> - One or more tags associated with the VM.
- volume
Size Double - The size of the volume, in gibibytes (GiB).
- volume
Type String
- delete
On booleanVm Deletion - By default or if set to true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
- iops number
- The number of I/O operations per second (IOPS). This parameter must be specified only if you create an
io1
volume. The maximum number of IOPS allowed forio1
volumes is13000
with a maximum performance ratio of 300 IOPS per gibibyte. - snapshot
Id string - The ID of the snapshot used to create the volume.
- Vm
Block Device Mapping Bsu Tag[] - One or more tags associated with the VM.
- volume
Size number - The size of the volume, in gibibytes (GiB).
- volume
Type string
- delete_
on_ boolvm_ deletion - By default or if set to true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
- iops float
- The number of I/O operations per second (IOPS). This parameter must be specified only if you create an
io1
volume. The maximum number of IOPS allowed forio1
volumes is13000
with a maximum performance ratio of 300 IOPS per gibibyte. - snapshot_
id str - The ID of the snapshot used to create the volume.
- Sequence[Vm
Block Device Mapping Bsu Tag] - One or more tags associated with the VM.
- volume_
size float - The size of the volume, in gibibytes (GiB).
- volume_
type str
- delete
On BooleanVm Deletion - By default or if set to true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
- iops Number
- The number of I/O operations per second (IOPS). This parameter must be specified only if you create an
io1
volume. The maximum number of IOPS allowed forio1
volumes is13000
with a maximum performance ratio of 300 IOPS per gibibyte. - snapshot
Id String - The ID of the snapshot used to create the volume.
- List<Property Map>
- One or more tags associated with the VM.
- volume
Size Number - The size of the volume, in gibibytes (GiB).
- volume
Type String
VmBlockDeviceMappingBsuTag, VmBlockDeviceMappingBsuTagArgs
VmBlockDeviceMappingsCreated, VmBlockDeviceMappingsCreatedArgs
- Bsus
List<Vm
Block Device Mappings Created Bsus> - Information about the created BSU volume.
- Device
Name string - The name of the device.
- Bsus
[]Vm
Block Device Mappings Created Bsus - Information about the created BSU volume.
- Device
Name string - The name of the device.
- bsus
List<Vm
Block Device Mappings Created Bsus> - Information about the created BSU volume.
- device
Name String - The name of the device.
- bsus
Vm
Block Device Mappings Created Bsus[] - Information about the created BSU volume.
- device
Name string - The name of the device.
- bsus
Sequence[Vm
Block Device Mappings Created Bsus] - Information about the created BSU volume.
- device_
name str - The name of the device.
- bsus List<Property Map>
- Information about the created BSU volume.
- device
Name String - The name of the device.
VmBlockDeviceMappingsCreatedBsus, VmBlockDeviceMappingsCreatedBsusArgs
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Link
Date string - The date and time (UTC) at which the volume was attached to the VM, in ISO 8601 date-time format.
- State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - List<Vm
Block Device Mappings Created Bsus Tag> - A tag to add to this resource. You can specify this argument several times.
- Volume
Id string - The ID of the volume.
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Link
Date string - The date and time (UTC) at which the volume was attached to the VM, in ISO 8601 date-time format.
- State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - []Vm
Block Device Mappings Created Bsus Tag - A tag to add to this resource. You can specify this argument several times.
- Volume
Id string - The ID of the volume.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- link
Date String - The date and time (UTC) at which the volume was attached to the VM, in ISO 8601 date-time format.
- state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - List<Vm
Block Device Mappings Created Bsus Tag> - A tag to add to this resource. You can specify this argument several times.
- volume
Id String - The ID of the volume.
- delete
On booleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- link
Date string - The date and time (UTC) at which the volume was attached to the VM, in ISO 8601 date-time format.
- state string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - Vm
Block Device Mappings Created Bsus Tag[] - A tag to add to this resource. You can specify this argument several times.
- volume
Id string - The ID of the volume.
- delete_
on_ boolvm_ deletion - If true, the NIC is deleted when the VM is terminated.
- link_
date str - The date and time (UTC) at which the volume was attached to the VM, in ISO 8601 date-time format.
- state str
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - Sequence[Vm
Block Device Mappings Created Bsus Tag] - A tag to add to this resource. You can specify this argument several times.
- volume_
id str - The ID of the volume.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- link
Date String - The date and time (UTC) at which the volume was attached to the VM, in ISO 8601 date-time format.
- state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
- volume
Id String - The ID of the volume.
VmBlockDeviceMappingsCreatedBsusTag, VmBlockDeviceMappingsCreatedBsusTagArgs
VmNic, VmNicArgs
- Device
Number double - The index of the VM device for the NIC attachment (between
1
and7
, both included). This parameter is required if you create a NIC when creating the VM. - Account
Id string - The account ID of the owner of the NIC.
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated. You can specify this parameter only for a new NIC. To modify this value for an existing NIC, see UpdateNic.
- Description string
- The description of the NIC, if you are creating a NIC when creating the VM.
- Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics List<VmNic Link Nic> - Information about the network interface card (NIC).
- Link
Public List<VmIps Nic Link Public Ip> - Information about the public IP associated with the NIC.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC, if you are attaching an existing NIC when creating a VM.
- Private
Dns stringName - The name of the private DNS.
- Private
Ips List<VmNic Private Ip> - One or more private IPs to assign to the NIC, if you create a NIC when creating a VM. Only one private IP can be the primary private IP.
- Secondary
Private doubleIp Count - The number of secondary private IPs, if you create a NIC when creating a VM. This parameter cannot be specified if you specified more than one private IP in the
private_ips
parameter. - Security
Group List<string>Ids - One or more IDs of security groups for the NIC, if you create a NIC when creating a VM.
- Security
Groups List<VmNic Security Group> - One or more security groups associated with the VM.
- State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - Subnet
Id string - The ID of the Subnet for the NIC, if you create a NIC when creating a VM. This parameter is required if you create a NIC when creating the VM.
- Device
Number float64 - The index of the VM device for the NIC attachment (between
1
and7
, both included). This parameter is required if you create a NIC when creating the VM. - Account
Id string - The account ID of the owner of the NIC.
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated. You can specify this parameter only for a new NIC. To modify this value for an existing NIC, see UpdateNic.
- Description string
- The description of the NIC, if you are creating a NIC when creating the VM.
- Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics []VmNic Link Nic - Information about the network interface card (NIC).
- Link
Public []VmIps Nic Link Public Ip - Information about the public IP associated with the NIC.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC, if you are attaching an existing NIC when creating a VM.
- Private
Dns stringName - The name of the private DNS.
- Private
Ips []VmNic Private Ip - One or more private IPs to assign to the NIC, if you create a NIC when creating a VM. Only one private IP can be the primary private IP.
- Secondary
Private float64Ip Count - The number of secondary private IPs, if you create a NIC when creating a VM. This parameter cannot be specified if you specified more than one private IP in the
private_ips
parameter. - Security
Group []stringIds - One or more IDs of security groups for the NIC, if you create a NIC when creating a VM.
- Security
Groups []VmNic Security Group - One or more security groups associated with the VM.
- State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - Subnet
Id string - The ID of the Subnet for the NIC, if you create a NIC when creating a VM. This parameter is required if you create a NIC when creating the VM.
- device
Number Double - The index of the VM device for the NIC attachment (between
1
and7
, both included). This parameter is required if you create a NIC when creating the VM. - account
Id String - The account ID of the owner of the NIC.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated. You can specify this parameter only for a new NIC. To modify this value for an existing NIC, see UpdateNic.
- description String
- The description of the NIC, if you are creating a NIC when creating the VM.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<VmNic Link Nic> - Information about the network interface card (NIC).
- link
Public List<VmIps Nic Link Public Ip> - Information about the public IP associated with the NIC.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC, if you are attaching an existing NIC when creating a VM.
- private
Dns StringName - The name of the private DNS.
- private
Ips List<VmNic Private Ip> - One or more private IPs to assign to the NIC, if you create a NIC when creating a VM. Only one private IP can be the primary private IP.
- secondary
Private DoubleIp Count - The number of secondary private IPs, if you create a NIC when creating a VM. This parameter cannot be specified if you specified more than one private IP in the
private_ips
parameter. - security
Group List<String>Ids - One or more IDs of security groups for the NIC, if you create a NIC when creating a VM.
- security
Groups List<VmNic Security Group> - One or more security groups associated with the VM.
- state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - subnet
Id String - The ID of the Subnet for the NIC, if you create a NIC when creating a VM. This parameter is required if you create a NIC when creating the VM.
- device
Number number - The index of the VM device for the NIC attachment (between
1
and7
, both included). This parameter is required if you create a NIC when creating the VM. - account
Id string - The account ID of the owner of the NIC.
- delete
On booleanVm Deletion - If true, the NIC is deleted when the VM is terminated. You can specify this parameter only for a new NIC. To modify this value for an existing NIC, see UpdateNic.
- description string
- The description of the NIC, if you are creating a NIC when creating the VM.
- is
Source booleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics VmNic Link Nic[] - Information about the network interface card (NIC).
- link
Public VmIps Nic Link Public Ip[] - Information about the public IP associated with the NIC.
- mac
Address string - The Media Access Control (MAC) address of the NIC.
- net
Id string - The ID of the Net for the NIC.
- nic
Id string - The ID of the NIC, if you are attaching an existing NIC when creating a VM.
- private
Dns stringName - The name of the private DNS.
- private
Ips VmNic Private Ip[] - One or more private IPs to assign to the NIC, if you create a NIC when creating a VM. Only one private IP can be the primary private IP.
- secondary
Private numberIp Count - The number of secondary private IPs, if you create a NIC when creating a VM. This parameter cannot be specified if you specified more than one private IP in the
private_ips
parameter. - security
Group string[]Ids - One or more IDs of security groups for the NIC, if you create a NIC when creating a VM.
- security
Groups VmNic Security Group[] - One or more security groups associated with the VM.
- state string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - subnet
Id string - The ID of the Subnet for the NIC, if you create a NIC when creating a VM. This parameter is required if you create a NIC when creating the VM.
- device_
number float - The index of the VM device for the NIC attachment (between
1
and7
, both included). This parameter is required if you create a NIC when creating the VM. - account_
id str - The account ID of the owner of the NIC.
- delete_
on_ boolvm_ deletion - If true, the NIC is deleted when the VM is terminated. You can specify this parameter only for a new NIC. To modify this value for an existing NIC, see UpdateNic.
- description str
- The description of the NIC, if you are creating a NIC when creating the VM.
- is_
source_ booldest_ checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link_
nics Sequence[VmNic Link Nic] - Information about the network interface card (NIC).
- link_
public_ Sequence[Vmips Nic Link Public Ip] - Information about the public IP associated with the NIC.
- mac_
address str - The Media Access Control (MAC) address of the NIC.
- net_
id str - The ID of the Net for the NIC.
- nic_
id str - The ID of the NIC, if you are attaching an existing NIC when creating a VM.
- private_
dns_ strname - The name of the private DNS.
- private_
ips Sequence[VmNic Private Ip] - One or more private IPs to assign to the NIC, if you create a NIC when creating a VM. Only one private IP can be the primary private IP.
- secondary_
private_ floatip_ count - The number of secondary private IPs, if you create a NIC when creating a VM. This parameter cannot be specified if you specified more than one private IP in the
private_ips
parameter. - security_
group_ Sequence[str]ids - One or more IDs of security groups for the NIC, if you create a NIC when creating a VM.
- security_
groups Sequence[VmNic Security Group] - One or more security groups associated with the VM.
- state str
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - subnet_
id str - The ID of the Subnet for the NIC, if you create a NIC when creating a VM. This parameter is required if you create a NIC when creating the VM.
- device
Number Number - The index of the VM device for the NIC attachment (between
1
and7
, both included). This parameter is required if you create a NIC when creating the VM. - account
Id String - The account ID of the owner of the NIC.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated. You can specify this parameter only for a new NIC. To modify this value for an existing NIC, see UpdateNic.
- description String
- The description of the NIC, if you are creating a NIC when creating the VM.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<Property Map> - Information about the network interface card (NIC).
- link
Public List<Property Map>Ips - Information about the public IP associated with the NIC.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC, if you are attaching an existing NIC when creating a VM.
- private
Dns StringName - The name of the private DNS.
- private
Ips List<Property Map> - One or more private IPs to assign to the NIC, if you create a NIC when creating a VM. Only one private IP can be the primary private IP.
- secondary
Private NumberIp Count - The number of secondary private IPs, if you create a NIC when creating a VM. This parameter cannot be specified if you specified more than one private IP in the
private_ips
parameter. - security
Group List<String>Ids - One or more IDs of security groups for the NIC, if you create a NIC when creating a VM.
- security
Groups List<Property Map> - One or more security groups associated with the VM.
- state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - subnet
Id String - The ID of the Subnet for the NIC, if you create a NIC when creating a VM. This parameter is required if you create a NIC when creating the VM.
VmNicLinkNic, VmNicLinkNicArgs
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Device
Number string - The device index for the NIC attachment (between
1
and7
, both included). - Link
Nic stringId - The ID of the NIC to attach.
- State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument.
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Device
Number string - The device index for the NIC attachment (between
1
and7
, both included). - Link
Nic stringId - The ID of the NIC to attach.
- State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number String - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic StringId - The ID of the NIC to attach.
- state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument.
- delete
On booleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number string - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic stringId - The ID of the NIC to attach.
- state string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument.
- delete_
on_ boolvm_ deletion - If true, the NIC is deleted when the VM is terminated.
- device_
number str - The device index for the NIC attachment (between
1
and7
, both included). - link_
nic_ strid - The ID of the NIC to attach.
- state str
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number String - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic StringId - The ID of the NIC to attach.
- state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument.
VmNicLinkPublicIp, VmNicLinkPublicIpArgs
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP of the VM.
- public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public_
dns_ strname - The name of the public DNS.
- public_
ip str - The public IP of the VM.
- public_
ip_ straccount_ id - The account ID of the owner of the public IP.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
VmNicPrivateIp, VmNicPrivateIpArgs
- Is
Primary bool - If true, the IP is the primary private IP of the NIC.
- Link
Public List<VmIps Nic Private Ip Link Public Ip> - Information about the public IP associated with the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The private IP of the NIC.
- Is
Primary bool - If true, the IP is the primary private IP of the NIC.
- Link
Public []VmIps Nic Private Ip Link Public Ip - Information about the public IP associated with the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The private IP of the NIC.
- is
Primary Boolean - If true, the IP is the primary private IP of the NIC.
- link
Public List<VmIps Nic Private Ip Link Public Ip> - Information about the public IP associated with the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The private IP of the NIC.
- is
Primary boolean - If true, the IP is the primary private IP of the NIC.
- link
Public VmIps Nic Private Ip Link Public Ip[] - Information about the public IP associated with the NIC.
- private
Dns stringName - The name of the private DNS.
- private
Ip string - The private IP of the NIC.
- is_
primary bool - If true, the IP is the primary private IP of the NIC.
- link_
public_ Sequence[Vmips Nic Private Ip Link Public Ip] - Information about the public IP associated with the NIC.
- private_
dns_ strname - The name of the private DNS.
- private_
ip str - The private IP of the NIC.
- is
Primary Boolean - If true, the IP is the primary private IP of the NIC.
- link
Public List<Property Map>Ips - Information about the public IP associated with the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The private IP of the NIC.
VmNicPrivateIpLinkPublicIp, VmNicPrivateIpLinkPublicIpArgs
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP of the VM.
- public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public_
dns_ strname - The name of the public DNS.
- public_
ip str - The public IP of the VM.
- public_
ip_ straccount_ id - The account ID of the owner of the public IP.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
VmNicSecurityGroup, VmNicSecurityGroupArgs
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
- security
Group stringId - The ID of the security group.
- security
Group stringName - The name of the security group.
- security_
group_ strid - The ID of the security group.
- security_
group_ strname - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
VmPrimaryNic, VmPrimaryNicArgs
- Device
Number double - The index of the VM device for the NIC attachment (must be
0
). This parameter is required if you create a NIC when creating the VM. - Account
Id string - The account ID of the owner of the NIC.
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated. You can specify this parameter only for a new NIC. To modify this value for an existing NIC, see UpdateNic.
- Description string
- The description of the NIC, if you are creating a NIC when creating the VM.
- Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics List<VmPrimary Nic Link Nic> - Information about the network interface card (NIC).
- Link
Public List<VmIps Primary Nic Link Public Ip> - Information about the public IP associated with the NIC.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC, if you are attaching an existing NIC when creating a VM.
- Private
Dns stringName - The name of the private DNS.
- Private
Ips List<VmPrimary Nic Private Ip> - One or more private IPs to assign to the NIC, if you create a NIC when creating a VM. Only one private IP can be the primary private IP.
- Secondary
Private doubleIp Count - The number of secondary private IPs, if you create a NIC when creating a VM. This parameter cannot be specified if you specified more than one private IP in the
private_ips
parameter. - Security
Group List<string>Ids - One or more IDs of security groups for the NIC, if you create a NIC when creating a VM.
- Security
Groups List<VmPrimary Nic Security Group> - One or more security groups associated with the VM.
- State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - Subnet
Id string - The ID of the Subnet for the NIC, if you create a NIC when creating a VM. This parameter is required if you create a NIC when creating the VM.
- Device
Number float64 - The index of the VM device for the NIC attachment (must be
0
). This parameter is required if you create a NIC when creating the VM. - Account
Id string - The account ID of the owner of the NIC.
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated. You can specify this parameter only for a new NIC. To modify this value for an existing NIC, see UpdateNic.
- Description string
- The description of the NIC, if you are creating a NIC when creating the VM.
- Is
Source boolDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- Link
Nics []VmPrimary Nic Link Nic - Information about the network interface card (NIC).
- Link
Public []VmIps Primary Nic Link Public Ip - Information about the public IP associated with the NIC.
- Mac
Address string - The Media Access Control (MAC) address of the NIC.
- Net
Id string - The ID of the Net for the NIC.
- Nic
Id string - The ID of the NIC, if you are attaching an existing NIC when creating a VM.
- Private
Dns stringName - The name of the private DNS.
- Private
Ips []VmPrimary Nic Private Ip - One or more private IPs to assign to the NIC, if you create a NIC when creating a VM. Only one private IP can be the primary private IP.
- Secondary
Private float64Ip Count - The number of secondary private IPs, if you create a NIC when creating a VM. This parameter cannot be specified if you specified more than one private IP in the
private_ips
parameter. - Security
Group []stringIds - One or more IDs of security groups for the NIC, if you create a NIC when creating a VM.
- Security
Groups []VmPrimary Nic Security Group - One or more security groups associated with the VM.
- State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - Subnet
Id string - The ID of the Subnet for the NIC, if you create a NIC when creating a VM. This parameter is required if you create a NIC when creating the VM.
- device
Number Double - The index of the VM device for the NIC attachment (must be
0
). This parameter is required if you create a NIC when creating the VM. - account
Id String - The account ID of the owner of the NIC.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated. You can specify this parameter only for a new NIC. To modify this value for an existing NIC, see UpdateNic.
- description String
- The description of the NIC, if you are creating a NIC when creating the VM.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<VmPrimary Nic Link Nic> - Information about the network interface card (NIC).
- link
Public List<VmIps Primary Nic Link Public Ip> - Information about the public IP associated with the NIC.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC, if you are attaching an existing NIC when creating a VM.
- private
Dns StringName - The name of the private DNS.
- private
Ips List<VmPrimary Nic Private Ip> - One or more private IPs to assign to the NIC, if you create a NIC when creating a VM. Only one private IP can be the primary private IP.
- secondary
Private DoubleIp Count - The number of secondary private IPs, if you create a NIC when creating a VM. This parameter cannot be specified if you specified more than one private IP in the
private_ips
parameter. - security
Group List<String>Ids - One or more IDs of security groups for the NIC, if you create a NIC when creating a VM.
- security
Groups List<VmPrimary Nic Security Group> - One or more security groups associated with the VM.
- state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - subnet
Id String - The ID of the Subnet for the NIC, if you create a NIC when creating a VM. This parameter is required if you create a NIC when creating the VM.
- device
Number number - The index of the VM device for the NIC attachment (must be
0
). This parameter is required if you create a NIC when creating the VM. - account
Id string - The account ID of the owner of the NIC.
- delete
On booleanVm Deletion - If true, the NIC is deleted when the VM is terminated. You can specify this parameter only for a new NIC. To modify this value for an existing NIC, see UpdateNic.
- description string
- The description of the NIC, if you are creating a NIC when creating the VM.
- is
Source booleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics VmPrimary Nic Link Nic[] - Information about the network interface card (NIC).
- link
Public VmIps Primary Nic Link Public Ip[] - Information about the public IP associated with the NIC.
- mac
Address string - The Media Access Control (MAC) address of the NIC.
- net
Id string - The ID of the Net for the NIC.
- nic
Id string - The ID of the NIC, if you are attaching an existing NIC when creating a VM.
- private
Dns stringName - The name of the private DNS.
- private
Ips VmPrimary Nic Private Ip[] - One or more private IPs to assign to the NIC, if you create a NIC when creating a VM. Only one private IP can be the primary private IP.
- secondary
Private numberIp Count - The number of secondary private IPs, if you create a NIC when creating a VM. This parameter cannot be specified if you specified more than one private IP in the
private_ips
parameter. - security
Group string[]Ids - One or more IDs of security groups for the NIC, if you create a NIC when creating a VM.
- security
Groups VmPrimary Nic Security Group[] - One or more security groups associated with the VM.
- state string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - subnet
Id string - The ID of the Subnet for the NIC, if you create a NIC when creating a VM. This parameter is required if you create a NIC when creating the VM.
- device_
number float - The index of the VM device for the NIC attachment (must be
0
). This parameter is required if you create a NIC when creating the VM. - account_
id str - The account ID of the owner of the NIC.
- delete_
on_ boolvm_ deletion - If true, the NIC is deleted when the VM is terminated. You can specify this parameter only for a new NIC. To modify this value for an existing NIC, see UpdateNic.
- description str
- The description of the NIC, if you are creating a NIC when creating the VM.
- is_
source_ booldest_ checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link_
nics Sequence[VmPrimary Nic Link Nic] - Information about the network interface card (NIC).
- link_
public_ Sequence[Vmips Primary Nic Link Public Ip] - Information about the public IP associated with the NIC.
- mac_
address str - The Media Access Control (MAC) address of the NIC.
- net_
id str - The ID of the Net for the NIC.
- nic_
id str - The ID of the NIC, if you are attaching an existing NIC when creating a VM.
- private_
dns_ strname - The name of the private DNS.
- private_
ips Sequence[VmPrimary Nic Private Ip] - One or more private IPs to assign to the NIC, if you create a NIC when creating a VM. Only one private IP can be the primary private IP.
- secondary_
private_ floatip_ count - The number of secondary private IPs, if you create a NIC when creating a VM. This parameter cannot be specified if you specified more than one private IP in the
private_ips
parameter. - security_
group_ Sequence[str]ids - One or more IDs of security groups for the NIC, if you create a NIC when creating a VM.
- security_
groups Sequence[VmPrimary Nic Security Group] - One or more security groups associated with the VM.
- state str
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - subnet_
id str - The ID of the Subnet for the NIC, if you create a NIC when creating a VM. This parameter is required if you create a NIC when creating the VM.
- device
Number Number - The index of the VM device for the NIC attachment (must be
0
). This parameter is required if you create a NIC when creating the VM. - account
Id String - The account ID of the owner of the NIC.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated. You can specify this parameter only for a new NIC. To modify this value for an existing NIC, see UpdateNic.
- description String
- The description of the NIC, if you are creating a NIC when creating the VM.
- is
Source BooleanDest Checked - (Net only) If true, the source/destination check is enabled. If false, it is disabled.
- link
Nics List<Property Map> - Information about the network interface card (NIC).
- link
Public List<Property Map>Ips - Information about the public IP associated with the NIC.
- mac
Address String - The Media Access Control (MAC) address of the NIC.
- net
Id String - The ID of the Net for the NIC.
- nic
Id String - The ID of the NIC, if you are attaching an existing NIC when creating a VM.
- private
Dns StringName - The name of the private DNS.
- private
Ips List<Property Map> - One or more private IPs to assign to the NIC, if you create a NIC when creating a VM. Only one private IP can be the primary private IP.
- secondary
Private NumberIp Count - The number of secondary private IPs, if you create a NIC when creating a VM. This parameter cannot be specified if you specified more than one private IP in the
private_ips
parameter. - security
Group List<String>Ids - One or more IDs of security groups for the NIC, if you create a NIC when creating a VM.
- security
Groups List<Property Map> - One or more security groups associated with the VM.
- state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument. - subnet
Id String - The ID of the Subnet for the NIC, if you create a NIC when creating a VM. This parameter is required if you create a NIC when creating the VM.
VmPrimaryNicLinkNic, VmPrimaryNicLinkNicArgs
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Device
Number string - The device index for the NIC attachment (between
1
and7
, both included). - Link
Nic stringId - The ID of the NIC to attach.
- State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument.
- Delete
On boolVm Deletion - If true, the NIC is deleted when the VM is terminated.
- Device
Number string - The device index for the NIC attachment (between
1
and7
, both included). - Link
Nic stringId - The ID of the NIC to attach.
- State string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number String - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic StringId - The ID of the NIC to attach.
- state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument.
- delete
On booleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number string - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic stringId - The ID of the NIC to attach.
- state string
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument.
- delete_
on_ boolvm_ deletion - If true, the NIC is deleted when the VM is terminated.
- device_
number str - The device index for the NIC attachment (between
1
and7
, both included). - link_
nic_ strid - The ID of the NIC to attach.
- state str
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument.
- delete
On BooleanVm Deletion - If true, the NIC is deleted when the VM is terminated.
- device
Number String - The device index for the NIC attachment (between
1
and7
, both included). - link
Nic StringId - The ID of the NIC to attach.
- state String
- The state of the VM (
running
|stopped
). If set tostopped
, the VM is stopped regardless of the value of thevm_initiated_shutdown_behavior
argument.
VmPrimaryNicLinkPublicIp, VmPrimaryNicLinkPublicIpArgs
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP of the VM.
- public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public_
dns_ strname - The name of the public DNS.
- public_
ip str - The public IP of the VM.
- public_
ip_ straccount_ id - The account ID of the owner of the public IP.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
VmPrimaryNicPrivateIp, VmPrimaryNicPrivateIpArgs
- Is
Primary bool - If true, the IP is the primary private IP of the NIC.
- Link
Public List<VmIps Primary Nic Private Ip Link Public Ip> - Information about the public IP associated with the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The private IP of the NIC.
- Is
Primary bool - If true, the IP is the primary private IP of the NIC.
- Link
Public []VmIps Primary Nic Private Ip Link Public Ip - Information about the public IP associated with the NIC.
- Private
Dns stringName - The name of the private DNS.
- Private
Ip string - The private IP of the NIC.
- is
Primary Boolean - If true, the IP is the primary private IP of the NIC.
- link
Public List<VmIps Primary Nic Private Ip Link Public Ip> - Information about the public IP associated with the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The private IP of the NIC.
- is
Primary boolean - If true, the IP is the primary private IP of the NIC.
- link
Public VmIps Primary Nic Private Ip Link Public Ip[] - Information about the public IP associated with the NIC.
- private
Dns stringName - The name of the private DNS.
- private
Ip string - The private IP of the NIC.
- is_
primary bool - If true, the IP is the primary private IP of the NIC.
- link_
public_ Sequence[Vmips Primary Nic Private Ip Link Public Ip] - Information about the public IP associated with the NIC.
- private_
dns_ strname - The name of the private DNS.
- private_
ip str - The private IP of the NIC.
- is
Primary Boolean - If true, the IP is the primary private IP of the NIC.
- link
Public List<Property Map>Ips - Information about the public IP associated with the NIC.
- private
Dns StringName - The name of the private DNS.
- private
Ip String - The private IP of the NIC.
VmPrimaryNicPrivateIpLinkPublicIp, VmPrimaryNicPrivateIpLinkPublicIpArgs
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- Public
Dns stringName - The name of the public DNS.
- Public
Ip string - The public IP of the VM.
- Public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
- public
Dns stringName - The name of the public DNS.
- public
Ip string - The public IP of the VM.
- public
Ip stringAccount Id - The account ID of the owner of the public IP.
- public_
dns_ strname - The name of the public DNS.
- public_
ip str - The public IP of the VM.
- public_
ip_ straccount_ id - The account ID of the owner of the public IP.
- public
Dns StringName - The name of the public DNS.
- public
Ip String - The public IP of the VM.
- public
Ip StringAccount Id - The account ID of the owner of the public IP.
VmPrimaryNicSecurityGroup, VmPrimaryNicSecurityGroupArgs
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
- security
Group stringId - The ID of the security group.
- security
Group stringName - The name of the security group.
- security_
group_ strid - The ID of the security group.
- security_
group_ strname - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
VmSecurityGroup, VmSecurityGroupArgs
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- Security
Group stringId - The ID of the security group.
- Security
Group stringName - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
- security
Group stringId - The ID of the security group.
- security
Group stringName - The name of the security group.
- security_
group_ strid - The ID of the security group.
- security_
group_ strname - The name of the security group.
- security
Group StringId - The ID of the security group.
- security
Group StringName - The name of the security group.
VmTag, VmTagArgs
VmTimeouts, VmTimeoutsArgs
Import
A VM can be imported using its ID. For example:
console
$ pulumi import outscale:index/vm:Vm ImportedVm i-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.