ovh.CloudProject.Instance
Explore with Pulumi AI
This resource uses a Beta API Creates an instance associated with a public cloud project.
Example Usage
Create a instance.
import * as pulumi from "@pulumi/pulumi";
import * as ovh from "@ovhcloud/pulumi-ovh";
const instance = new ovh.cloudproject.Instance("instance", {
billingPeriod: "hourly",
bootFrom: {
imageId: "UUID",
},
flavor: {
flavorId: "UUID",
},
network: {
"public": true,
},
region: "RRRR",
serviceName: "XXX",
sshKey: {
name: "sshname",
},
});
import pulumi
import pulumi_ovh as ovh
instance = ovh.cloud_project.Instance("instance",
billing_period="hourly",
boot_from={
"image_id": "UUID",
},
flavor={
"flavor_id": "UUID",
},
network={
"public": True,
},
region="RRRR",
service_name="XXX",
ssh_key={
"name": "sshname",
})
package main
import (
"github.com/ovh/pulumi-ovh/sdk/v2/go/ovh/cloudproject"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudproject.NewInstance(ctx, "instance", &cloudproject.InstanceArgs{
BillingPeriod: pulumi.String("hourly"),
BootFrom: &cloudproject.InstanceBootFromArgs{
ImageId: pulumi.String("UUID"),
},
Flavor: &cloudproject.InstanceFlavorArgs{
FlavorId: pulumi.String("UUID"),
},
Network: &cloudproject.InstanceNetworkArgs{
Public: pulumi.Bool(true),
},
Region: pulumi.String("RRRR"),
ServiceName: pulumi.String("XXX"),
SshKey: &cloudproject.InstanceSshKeyArgs{
Name: pulumi.String("sshname"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ovh = Pulumi.Ovh;
return await Deployment.RunAsync(() =>
{
var instance = new Ovh.CloudProject.Instance("instance", new()
{
BillingPeriod = "hourly",
BootFrom = new Ovh.CloudProject.Inputs.InstanceBootFromArgs
{
ImageId = "UUID",
},
Flavor = new Ovh.CloudProject.Inputs.InstanceFlavorArgs
{
FlavorId = "UUID",
},
Network = new Ovh.CloudProject.Inputs.InstanceNetworkArgs
{
Public = true,
},
Region = "RRRR",
ServiceName = "XXX",
SshKey = new Ovh.CloudProject.Inputs.InstanceSshKeyArgs
{
Name = "sshname",
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ovh.CloudProject.Instance;
import com.pulumi.ovh.CloudProject.InstanceArgs;
import com.pulumi.ovh.CloudProject.inputs.InstanceBootFromArgs;
import com.pulumi.ovh.CloudProject.inputs.InstanceFlavorArgs;
import com.pulumi.ovh.CloudProject.inputs.InstanceNetworkArgs;
import com.pulumi.ovh.CloudProject.inputs.InstanceSshKeyArgs;
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 instance = new Instance("instance", InstanceArgs.builder()
.billingPeriod("hourly")
.bootFrom(InstanceBootFromArgs.builder()
.imageId("UUID")
.build())
.flavor(InstanceFlavorArgs.builder()
.flavorId("UUID")
.build())
.network(InstanceNetworkArgs.builder()
.public_(true)
.build())
.region("RRRR")
.serviceName("XXX")
.sshKey(InstanceSshKeyArgs.builder()
.name("sshname")
.build())
.build());
}
}
resources:
instance:
type: ovh:CloudProject:Instance
properties:
billingPeriod: hourly
bootFrom:
imageId: UUID
flavor:
flavorId: UUID
network:
public: true
region: RRRR
serviceName: XXX
sshKey:
name: sshname
Create Instance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Instance(name: string, args: InstanceArgs, opts?: CustomResourceOptions);
@overload
def Instance(resource_name: str,
args: InstanceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Instance(resource_name: str,
opts: Optional[ResourceOptions] = None,
region: Optional[str] = None,
service_name: Optional[str] = None,
billing_period: Optional[str] = None,
boot_from: Optional[_cloudproject.InstanceBootFromArgs] = None,
network: Optional[_cloudproject.InstanceNetworkArgs] = None,
flavor: Optional[_cloudproject.InstanceFlavorArgs] = None,
bulk: Optional[int] = None,
group: Optional[_cloudproject.InstanceGroupArgs] = None,
availability_zone: Optional[str] = None,
auto_backup: Optional[_cloudproject.InstanceAutoBackupArgs] = None,
name: Optional[str] = None,
ssh_key: Optional[_cloudproject.InstanceSshKeyArgs] = None,
ssh_key_create: Optional[_cloudproject.InstanceSshKeyCreateArgs] = None,
user_data: Optional[str] = None)
func NewInstance(ctx *Context, name string, args InstanceArgs, opts ...ResourceOption) (*Instance, error)
public Instance(string name, InstanceArgs args, CustomResourceOptions? opts = null)
public Instance(String name, InstanceArgs args)
public Instance(String name, InstanceArgs args, CustomResourceOptions options)
type: ovh:CloudProject:Instance
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 InstanceArgs
- 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 InstanceArgs
- 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 InstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args InstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args InstanceArgs
- 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 instanceResource = new Ovh.CloudProject.Instance("instanceResource", new()
{
Region = "string",
ServiceName = "string",
BillingPeriod = "string",
BootFrom = new Ovh.CloudProject.Inputs.InstanceBootFromArgs
{
ImageId = "string",
VolumeId = "string",
},
Network = new Ovh.CloudProject.Inputs.InstanceNetworkArgs
{
Public = false,
},
Flavor = new Ovh.CloudProject.Inputs.InstanceFlavorArgs
{
FlavorId = "string",
},
Bulk = 0,
Group = new Ovh.CloudProject.Inputs.InstanceGroupArgs
{
GroupId = "string",
},
AvailabilityZone = "string",
AutoBackup = new Ovh.CloudProject.Inputs.InstanceAutoBackupArgs
{
Cron = "string",
Rotation = 0,
},
Name = "string",
SshKey = new Ovh.CloudProject.Inputs.InstanceSshKeyArgs
{
Name = "string",
},
SshKeyCreate = new Ovh.CloudProject.Inputs.InstanceSshKeyCreateArgs
{
Name = "string",
PublicKey = "string",
},
UserData = "string",
});
example, err := CloudProject.NewInstance(ctx, "instanceResource", &CloudProject.InstanceArgs{
Region: pulumi.String("string"),
ServiceName: pulumi.String("string"),
BillingPeriod: pulumi.String("string"),
BootFrom: &cloudproject.InstanceBootFromArgs{
ImageId: pulumi.String("string"),
VolumeId: pulumi.String("string"),
},
Network: &cloudproject.InstanceNetworkArgs{
Public: pulumi.Bool(false),
},
Flavor: &cloudproject.InstanceFlavorArgs{
FlavorId: pulumi.String("string"),
},
Bulk: pulumi.Int(0),
Group: &cloudproject.InstanceGroupArgs{
GroupId: pulumi.String("string"),
},
AvailabilityZone: pulumi.String("string"),
AutoBackup: &cloudproject.InstanceAutoBackupArgs{
Cron: pulumi.String("string"),
Rotation: pulumi.Int(0),
},
Name: pulumi.String("string"),
SshKey: &cloudproject.InstanceSshKeyArgs{
Name: pulumi.String("string"),
},
SshKeyCreate: &cloudproject.InstanceSshKeyCreateArgs{
Name: pulumi.String("string"),
PublicKey: pulumi.String("string"),
},
UserData: pulumi.String("string"),
})
var instanceResource = new Instance("instanceResource", InstanceArgs.builder()
.region("string")
.serviceName("string")
.billingPeriod("string")
.bootFrom(InstanceBootFromArgs.builder()
.imageId("string")
.volumeId("string")
.build())
.network(InstanceNetworkArgs.builder()
.public_(false)
.build())
.flavor(InstanceFlavorArgs.builder()
.flavorId("string")
.build())
.bulk(0)
.group(InstanceGroupArgs.builder()
.groupId("string")
.build())
.availabilityZone("string")
.autoBackup(InstanceAutoBackupArgs.builder()
.cron("string")
.rotation(0)
.build())
.name("string")
.sshKey(InstanceSshKeyArgs.builder()
.name("string")
.build())
.sshKeyCreate(InstanceSshKeyCreateArgs.builder()
.name("string")
.publicKey("string")
.build())
.userData("string")
.build());
instance_resource = ovh.cloud_project.Instance("instanceResource",
region="string",
service_name="string",
billing_period="string",
boot_from={
"image_id": "string",
"volume_id": "string",
},
network={
"public": False,
},
flavor={
"flavor_id": "string",
},
bulk=0,
group={
"group_id": "string",
},
availability_zone="string",
auto_backup={
"cron": "string",
"rotation": 0,
},
name="string",
ssh_key={
"name": "string",
},
ssh_key_create={
"name": "string",
"public_key": "string",
},
user_data="string")
const instanceResource = new ovh.cloudproject.Instance("instanceResource", {
region: "string",
serviceName: "string",
billingPeriod: "string",
bootFrom: {
imageId: "string",
volumeId: "string",
},
network: {
"public": false,
},
flavor: {
flavorId: "string",
},
bulk: 0,
group: {
groupId: "string",
},
availabilityZone: "string",
autoBackup: {
cron: "string",
rotation: 0,
},
name: "string",
sshKey: {
name: "string",
},
sshKeyCreate: {
name: "string",
publicKey: "string",
},
userData: "string",
});
type: ovh:CloudProject:Instance
properties:
autoBackup:
cron: string
rotation: 0
availabilityZone: string
billingPeriod: string
bootFrom:
imageId: string
volumeId: string
bulk: 0
flavor:
flavorId: string
group:
groupId: string
name: string
network:
public: false
region: string
serviceName: string
sshKey:
name: string
sshKeyCreate:
name: string
publicKey: string
userData: string
Instance 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 Instance resource accepts the following input properties:
- Billing
Period string - Billing period - hourly or monthly
- Boot
From InstanceBoot From - Boot the instance from an image or a volume
- Flavor
Instance
Flavor - Flavor information
- Network
Instance
Network - Create network interfaces
- Region string
- Instance region
- Service
Name string - The id of the public cloud project. If omitted,
the
OVH_CLOUD_PROJECT_SERVICE
environment variable is used - Auto
Backup InstanceAuto Backup - Create an autobackup workflow after instance start up.
- Availability
Zone string - The availability zone where the instance will be created
- Bulk int
- Create multiple instances
- Group
Instance
Group - Start instance in group
- Name string
- Instance name
- Ssh
Key InstanceSsh Key - Existing SSH Keypair
- Ssh
Key InstanceCreate Ssh Key Create - Add existing SSH Key pair into your Public Cloud project and link it to the instance
- User
Data string - Configuration information or scripts to use upon launch
- Billing
Period string - Billing period - hourly or monthly
- Boot
From InstanceBoot From Args - Boot the instance from an image or a volume
- Flavor
Instance
Flavor Args - Flavor information
- Network
Instance
Network Args - Create network interfaces
- Region string
- Instance region
- Service
Name string - The id of the public cloud project. If omitted,
the
OVH_CLOUD_PROJECT_SERVICE
environment variable is used - Auto
Backup InstanceAuto Backup Args - Create an autobackup workflow after instance start up.
- Availability
Zone string - The availability zone where the instance will be created
- Bulk int
- Create multiple instances
- Group
Instance
Group Args - Start instance in group
- Name string
- Instance name
- Ssh
Key InstanceSsh Key Args - Existing SSH Keypair
- Ssh
Key InstanceCreate Ssh Key Create Args - Add existing SSH Key pair into your Public Cloud project and link it to the instance
- User
Data string - Configuration information or scripts to use upon launch
- billing
Period String - Billing period - hourly or monthly
- boot
From InstanceBoot From - Boot the instance from an image or a volume
- flavor
Instance
Flavor - Flavor information
- network
Instance
Network - Create network interfaces
- region String
- Instance region
- service
Name String - The id of the public cloud project. If omitted,
the
OVH_CLOUD_PROJECT_SERVICE
environment variable is used - auto
Backup InstanceAuto Backup - Create an autobackup workflow after instance start up.
- availability
Zone String - The availability zone where the instance will be created
- bulk Integer
- Create multiple instances
- group
Instance
Group - Start instance in group
- name String
- Instance name
- ssh
Key InstanceSsh Key - Existing SSH Keypair
- ssh
Key InstanceCreate Ssh Key Create - Add existing SSH Key pair into your Public Cloud project and link it to the instance
- user
Data String - Configuration information or scripts to use upon launch
- billing
Period string - Billing period - hourly or monthly
- boot
From InstanceBoot From - Boot the instance from an image or a volume
- flavor
Instance
Flavor - Flavor information
- network
Instance
Network - Create network interfaces
- region string
- Instance region
- service
Name string - The id of the public cloud project. If omitted,
the
OVH_CLOUD_PROJECT_SERVICE
environment variable is used - auto
Backup InstanceAuto Backup - Create an autobackup workflow after instance start up.
- availability
Zone string - The availability zone where the instance will be created
- bulk number
- Create multiple instances
- group
Instance
Group - Start instance in group
- name string
- Instance name
- ssh
Key InstanceSsh Key - Existing SSH Keypair
- ssh
Key InstanceCreate Ssh Key Create - Add existing SSH Key pair into your Public Cloud project and link it to the instance
- user
Data string - Configuration information or scripts to use upon launch
- billing_
period str - Billing period - hourly or monthly
- boot_
from cloudproject.Instance Boot From Args - Boot the instance from an image or a volume
- flavor
cloudproject.
Instance Flavor Args - Flavor information
- network
cloudproject.
Instance Network Args - Create network interfaces
- region str
- Instance region
- service_
name str - The id of the public cloud project. If omitted,
the
OVH_CLOUD_PROJECT_SERVICE
environment variable is used - auto_
backup cloudproject.Instance Auto Backup Args - Create an autobackup workflow after instance start up.
- availability_
zone str - The availability zone where the instance will be created
- bulk int
- Create multiple instances
- group
cloudproject.
Instance Group Args - Start instance in group
- name str
- Instance name
- ssh_
key cloudproject.Instance Ssh Key Args - Existing SSH Keypair
- ssh_
key_ cloudproject.create Instance Ssh Key Create Args - Add existing SSH Key pair into your Public Cloud project and link it to the instance
- user_
data str - Configuration information or scripts to use upon launch
- billing
Period String - Billing period - hourly or monthly
- boot
From Property Map - Boot the instance from an image or a volume
- flavor Property Map
- Flavor information
- network Property Map
- Create network interfaces
- region String
- Instance region
- service
Name String - The id of the public cloud project. If omitted,
the
OVH_CLOUD_PROJECT_SERVICE
environment variable is used - auto
Backup Property Map - Create an autobackup workflow after instance start up.
- availability
Zone String - The availability zone where the instance will be created
- bulk Number
- Create multiple instances
- group Property Map
- Start instance in group
- name String
- Instance name
- ssh
Key Property Map - Existing SSH Keypair
- ssh
Key Property MapCreate - Add existing SSH Key pair into your Public Cloud project and link it to the instance
- user
Data String - Configuration information or scripts to use upon launch
Outputs
All input properties are implicitly available as output properties. Additionally, the Instance resource produces the following output properties:
- Addresses
List<Instance
Address> - Instance IP addresses
- Attached
Volumes List<InstanceAttached Volume> - Volumes attached to the instance
- Flavor
Id string - Flavor id
- Flavor
Name string - Flavor name
- Id string
- The provider-assigned unique ID for this managed resource.
- Image
Id string - Image id
- Task
State string - Instance task state
- Addresses
[]Instance
Address - Instance IP addresses
- Attached
Volumes []InstanceAttached Volume - Volumes attached to the instance
- Flavor
Id string - Flavor id
- Flavor
Name string - Flavor name
- Id string
- The provider-assigned unique ID for this managed resource.
- Image
Id string - Image id
- Task
State string - Instance task state
- addresses
List<Instance
Address> - Instance IP addresses
- attached
Volumes List<InstanceAttached Volume> - Volumes attached to the instance
- flavor
Id String - Flavor id
- flavor
Name String - Flavor name
- id String
- The provider-assigned unique ID for this managed resource.
- image
Id String - Image id
- task
State String - Instance task state
- addresses
Instance
Address[] - Instance IP addresses
- attached
Volumes InstanceAttached Volume[] - Volumes attached to the instance
- flavor
Id string - Flavor id
- flavor
Name string - Flavor name
- id string
- The provider-assigned unique ID for this managed resource.
- image
Id string - Image id
- task
State string - Instance task state
- addresses
Sequence[cloudproject.
Instance Address] - Instance IP addresses
- attached_
volumes Sequence[cloudproject.Instance Attached Volume] - Volumes attached to the instance
- flavor_
id str - Flavor id
- flavor_
name str - Flavor name
- id str
- The provider-assigned unique ID for this managed resource.
- image_
id str - Image id
- task_
state str - Instance task state
- addresses List<Property Map>
- Instance IP addresses
- attached
Volumes List<Property Map> - Volumes attached to the instance
- flavor
Id String - Flavor id
- flavor
Name String - Flavor name
- id String
- The provider-assigned unique ID for this managed resource.
- image
Id String - Image id
- task
State String - Instance task state
Look up Existing Instance Resource
Get an existing Instance 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?: InstanceState, opts?: CustomResourceOptions): Instance
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
addresses: Optional[Sequence[_cloudproject.InstanceAddressArgs]] = None,
attached_volumes: Optional[Sequence[_cloudproject.InstanceAttachedVolumeArgs]] = None,
auto_backup: Optional[_cloudproject.InstanceAutoBackupArgs] = None,
availability_zone: Optional[str] = None,
billing_period: Optional[str] = None,
boot_from: Optional[_cloudproject.InstanceBootFromArgs] = None,
bulk: Optional[int] = None,
flavor: Optional[_cloudproject.InstanceFlavorArgs] = None,
flavor_id: Optional[str] = None,
flavor_name: Optional[str] = None,
group: Optional[_cloudproject.InstanceGroupArgs] = None,
image_id: Optional[str] = None,
name: Optional[str] = None,
network: Optional[_cloudproject.InstanceNetworkArgs] = None,
region: Optional[str] = None,
service_name: Optional[str] = None,
ssh_key: Optional[_cloudproject.InstanceSshKeyArgs] = None,
ssh_key_create: Optional[_cloudproject.InstanceSshKeyCreateArgs] = None,
task_state: Optional[str] = None,
user_data: Optional[str] = None) -> Instance
func GetInstance(ctx *Context, name string, id IDInput, state *InstanceState, opts ...ResourceOption) (*Instance, error)
public static Instance Get(string name, Input<string> id, InstanceState? state, CustomResourceOptions? opts = null)
public static Instance get(String name, Output<String> id, InstanceState state, CustomResourceOptions options)
resources: _: type: ovh:CloudProject:Instance 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.
- Addresses
List<Instance
Address> - Instance IP addresses
- Attached
Volumes List<InstanceAttached Volume> - Volumes attached to the instance
- Auto
Backup InstanceAuto Backup - Create an autobackup workflow after instance start up.
- Availability
Zone string - The availability zone where the instance will be created
- Billing
Period string - Billing period - hourly or monthly
- Boot
From InstanceBoot From - Boot the instance from an image or a volume
- Bulk int
- Create multiple instances
- Flavor
Instance
Flavor - Flavor information
- Flavor
Id string - Flavor id
- Flavor
Name string - Flavor name
- Group
Instance
Group - Start instance in group
- Image
Id string - Image id
- Name string
- Instance name
- Network
Instance
Network - Create network interfaces
- Region string
- Instance region
- Service
Name string - The id of the public cloud project. If omitted,
the
OVH_CLOUD_PROJECT_SERVICE
environment variable is used - Ssh
Key InstanceSsh Key - Existing SSH Keypair
- Ssh
Key InstanceCreate Ssh Key Create - Add existing SSH Key pair into your Public Cloud project and link it to the instance
- Task
State string - Instance task state
- User
Data string - Configuration information or scripts to use upon launch
- Addresses
[]Instance
Address Args - Instance IP addresses
- Attached
Volumes []InstanceAttached Volume Args - Volumes attached to the instance
- Auto
Backup InstanceAuto Backup Args - Create an autobackup workflow after instance start up.
- Availability
Zone string - The availability zone where the instance will be created
- Billing
Period string - Billing period - hourly or monthly
- Boot
From InstanceBoot From Args - Boot the instance from an image or a volume
- Bulk int
- Create multiple instances
- Flavor
Instance
Flavor Args - Flavor information
- Flavor
Id string - Flavor id
- Flavor
Name string - Flavor name
- Group
Instance
Group Args - Start instance in group
- Image
Id string - Image id
- Name string
- Instance name
- Network
Instance
Network Args - Create network interfaces
- Region string
- Instance region
- Service
Name string - The id of the public cloud project. If omitted,
the
OVH_CLOUD_PROJECT_SERVICE
environment variable is used - Ssh
Key InstanceSsh Key Args - Existing SSH Keypair
- Ssh
Key InstanceCreate Ssh Key Create Args - Add existing SSH Key pair into your Public Cloud project and link it to the instance
- Task
State string - Instance task state
- User
Data string - Configuration information or scripts to use upon launch
- addresses
List<Instance
Address> - Instance IP addresses
- attached
Volumes List<InstanceAttached Volume> - Volumes attached to the instance
- auto
Backup InstanceAuto Backup - Create an autobackup workflow after instance start up.
- availability
Zone String - The availability zone where the instance will be created
- billing
Period String - Billing period - hourly or monthly
- boot
From InstanceBoot From - Boot the instance from an image or a volume
- bulk Integer
- Create multiple instances
- flavor
Instance
Flavor - Flavor information
- flavor
Id String - Flavor id
- flavor
Name String - Flavor name
- group
Instance
Group - Start instance in group
- image
Id String - Image id
- name String
- Instance name
- network
Instance
Network - Create network interfaces
- region String
- Instance region
- service
Name String - The id of the public cloud project. If omitted,
the
OVH_CLOUD_PROJECT_SERVICE
environment variable is used - ssh
Key InstanceSsh Key - Existing SSH Keypair
- ssh
Key InstanceCreate Ssh Key Create - Add existing SSH Key pair into your Public Cloud project and link it to the instance
- task
State String - Instance task state
- user
Data String - Configuration information or scripts to use upon launch
- addresses
Instance
Address[] - Instance IP addresses
- attached
Volumes InstanceAttached Volume[] - Volumes attached to the instance
- auto
Backup InstanceAuto Backup - Create an autobackup workflow after instance start up.
- availability
Zone string - The availability zone where the instance will be created
- billing
Period string - Billing period - hourly or monthly
- boot
From InstanceBoot From - Boot the instance from an image or a volume
- bulk number
- Create multiple instances
- flavor
Instance
Flavor - Flavor information
- flavor
Id string - Flavor id
- flavor
Name string - Flavor name
- group
Instance
Group - Start instance in group
- image
Id string - Image id
- name string
- Instance name
- network
Instance
Network - Create network interfaces
- region string
- Instance region
- service
Name string - The id of the public cloud project. If omitted,
the
OVH_CLOUD_PROJECT_SERVICE
environment variable is used - ssh
Key InstanceSsh Key - Existing SSH Keypair
- ssh
Key InstanceCreate Ssh Key Create - Add existing SSH Key pair into your Public Cloud project and link it to the instance
- task
State string - Instance task state
- user
Data string - Configuration information or scripts to use upon launch
- addresses
Sequence[cloudproject.
Instance Address Args] - Instance IP addresses
- attached_
volumes Sequence[cloudproject.Instance Attached Volume Args] - Volumes attached to the instance
- auto_
backup cloudproject.Instance Auto Backup Args - Create an autobackup workflow after instance start up.
- availability_
zone str - The availability zone where the instance will be created
- billing_
period str - Billing period - hourly or monthly
- boot_
from cloudproject.Instance Boot From Args - Boot the instance from an image or a volume
- bulk int
- Create multiple instances
- flavor
cloudproject.
Instance Flavor Args - Flavor information
- flavor_
id str - Flavor id
- flavor_
name str - Flavor name
- group
cloudproject.
Instance Group Args - Start instance in group
- image_
id str - Image id
- name str
- Instance name
- network
cloudproject.
Instance Network Args - Create network interfaces
- region str
- Instance region
- service_
name str - The id of the public cloud project. If omitted,
the
OVH_CLOUD_PROJECT_SERVICE
environment variable is used - ssh_
key cloudproject.Instance Ssh Key Args - Existing SSH Keypair
- ssh_
key_ cloudproject.create Instance Ssh Key Create Args - Add existing SSH Key pair into your Public Cloud project and link it to the instance
- task_
state str - Instance task state
- user_
data str - Configuration information or scripts to use upon launch
- addresses List<Property Map>
- Instance IP addresses
- attached
Volumes List<Property Map> - Volumes attached to the instance
- auto
Backup Property Map - Create an autobackup workflow after instance start up.
- availability
Zone String - The availability zone where the instance will be created
- billing
Period String - Billing period - hourly or monthly
- boot
From Property Map - Boot the instance from an image or a volume
- bulk Number
- Create multiple instances
- flavor Property Map
- Flavor information
- flavor
Id String - Flavor id
- flavor
Name String - Flavor name
- group Property Map
- Start instance in group
- image
Id String - Image id
- name String
- Instance name
- network Property Map
- Create network interfaces
- region String
- Instance region
- service
Name String - The id of the public cloud project. If omitted,
the
OVH_CLOUD_PROJECT_SERVICE
environment variable is used - ssh
Key Property Map - Existing SSH Keypair
- ssh
Key Property MapCreate - Add existing SSH Key pair into your Public Cloud project and link it to the instance
- task
State String - Instance task state
- user
Data String - Configuration information or scripts to use upon launch
Supporting Types
InstanceAddress, InstanceAddressArgs
InstanceAttachedVolume, InstanceAttachedVolumeArgs
- Id string
- Instance id
- Id string
- Instance id
- id String
- Instance id
- id string
- Instance id
- id str
- Instance id
- id String
- Instance id
InstanceAutoBackup, InstanceAutoBackupArgs
InstanceBootFrom, InstanceBootFromArgs
InstanceFlavor, InstanceFlavorArgs
- Flavor
Id string - Flavor ID. Flavors can be retrieved using
GET /cloud/project/{serviceName}/flavor
- Flavor
Id string - Flavor ID. Flavors can be retrieved using
GET /cloud/project/{serviceName}/flavor
- flavor
Id String - Flavor ID. Flavors can be retrieved using
GET /cloud/project/{serviceName}/flavor
- flavor
Id string - Flavor ID. Flavors can be retrieved using
GET /cloud/project/{serviceName}/flavor
- flavor_
id str - Flavor ID. Flavors can be retrieved using
GET /cloud/project/{serviceName}/flavor
- flavor
Id String - Flavor ID. Flavors can be retrieved using
GET /cloud/project/{serviceName}/flavor
InstanceGroup, InstanceGroupArgs
- Group
Id string - Group id
- Group
Id string - Group id
- group
Id String - Group id
- group
Id string - Group id
- group_
id str - Group id
- group
Id String - Group id
InstanceNetwork, InstanceNetworkArgs
- Public bool
- Set the new instance as public boolean
- Public bool
- Set the new instance as public boolean
- public_ Boolean
- Set the new instance as public boolean
- public boolean
- Set the new instance as public boolean
- public bool
- Set the new instance as public boolean
- public Boolean
- Set the new instance as public boolean
InstanceSshKey, InstanceSshKeyArgs
- Name string
- SSH Keypair name
- Name string
- SSH Keypair name
- name String
- SSH Keypair name
- name string
- SSH Keypair name
- name str
- SSH Keypair name
- name String
- SSH Keypair name
InstanceSshKeyCreate, InstanceSshKeyCreateArgs
- name str
- SSH Key pair name
- public_
key str - SSH Public key
Package Details
- Repository
- ovh ovh/pulumi-ovh
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ovh
Terraform Provider.