Skip to content

Commit

Permalink
Release Documentation 1.0.0rc1
Browse files Browse the repository at this point in the history
Signed-off-by: Outscale Bot <opensource+bot@outscale.com>
  • Loading branch information
Open-Source-Bot authored and outscale-toa committed Jun 20, 2024
1 parent a9d6078 commit 89790c5
Show file tree
Hide file tree
Showing 5 changed files with 140 additions and 23 deletions.
4 changes: 2 additions & 2 deletions docs/resources/flexible_gpu_link.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ resource "outscale_flexible_gpu" "flexible_gpu01" {

```hcl
resource "outscale_flexible_gpu_link" "link_fgpu01" {
flexible_gpu_id = outscale_flexible_gpu.flexible_gpu01.flexible_gpu_id
flexible_gpu_ids = [outscale_flexible_gpu.flexible_gpu01.flexible_gpu_id]
vm_id = outscale_vm.vm01.vm_id
}
```
Expand All @@ -47,7 +47,7 @@ resource "outscale_flexible_gpu_link" "link_fgpu01" {

The following arguments are supported:

* `flexible_gpu_id` - (Required) The ID of the fGPU you want to attach.
* `flexible_gpu_ids` - (Required) (Required) The ID of one or more fGPUs you want to attach.
* `vm_id` - (Required) The ID of the VM you want to attach the fGPU to.

## Attribute Reference
Expand Down
1 change: 1 addition & 0 deletions docs/resources/nic.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ resource "outscale_security_group" "security_group01" {
```hcl
resource "outscale_nic" "nic01" {
subnet_id = outscale_subnet.subnet01.subnet_id
security_group_ids = [outscale_security_group.security_group01.security_group_id]
}
```
Expand Down
86 changes: 66 additions & 20 deletions docs/resources/vm.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,16 @@ resource "outscale_keypair" "keypair01" {
### Create a VM in the public Cloud

```hcl
resource "outscale_security_group" "security_group01" {
description = "vm security group"
security_group_name = "vm_security_group1"
}
resource "outscale_vm" "vm01" {
image_id = var.image_id
vm_type = var.vm_type
keypair_name = var.keypair_name
security_group_ids = [var.security_group_id]
security_group_ids = [outscale_security_group.security_group01.security_group_id]
placement_subregion_name = "eu-west-2a"
placement_tenancy = "default"
tags {
Expand All @@ -49,10 +54,16 @@ resource "outscale_vm" "vm01" {
### Create a VM with block device mappings

```hcl
resource "outscale_security_group" "security_group01" {
description = "vm security group"
security_group_name = "vm_security_group1"
}
resource "outscale_vm" "vm02" {
image_id = var.image_id
vm_type = var.vm_type
keypair_name = var.keypair_name
security_group_ids = [outscale_security_group.security_group01.security_group_id]
block_device_mappings {
device_name = "/dev/sda1" # /dev/sda1 corresponds to the root device of the VM
bsu {
Expand All @@ -71,6 +82,32 @@ resource "outscale_vm" "vm02" {
}
}
}
resource "outscale_security_group" "security_group01" {
description = "vm security group"
security_group_name = "vm_security_group1"
}
resource "outscale_vm" "vm02" {
image_id = var.image_id
vm_type = var.vm_type
keypair_name = var.keypair_name
security_group_ids = [outscale_security_group.security_group01.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"
}
}
}
}
```

### Create a VM in a Net with a network
Expand Down Expand Up @@ -141,6 +178,11 @@ resource "outscale_vm" "vm03" {
~> **Note:** If you plan to use the `outscale_nic_link`resource, it is recommended to specify the `primary_nic` argument to define the primary network interface of a VM.

```hcl
resource "outscale_security_group" "security_group01" {
description = "vm security group"
security_group_name = "vm_security_group1"
}
resource "outscale_net" "net02" {
ip_range = "10.0.0.0/16"
tags {
Expand All @@ -163,9 +205,10 @@ resource "outscale_nic" "nic01" {
}
resource "outscale_vm" "vm04" {
image_id = var.image_id
vm_type = "c4.large"
keypair_name = var.keypair_name
image_id = var.image_id
vm_type = "c4.large"
keypair_name = var.keypair_name
security_group_ids = [outscale_security_group.security_group01.security_group_id]
primary_nic {
nic_id = outscale_nic.nic01.nic_id
device_number = "0"
Expand All @@ -176,6 +219,11 @@ resource "outscale_vm" "vm04" {
### Create a VM with secondary NICs

```hcl
resource "outscale_security_group" "security_group01" {
description = "vm security group"
security_group_name = "vm_security_group1"
}
resource "outscale_net" "net02" {
ip_range = "10.0.0.0/16"
tags {
Expand All @@ -198,9 +246,10 @@ resource "outscale_nic" "nic01" {
}
resource "outscale_vm" "vm04" {
image_id = var.image_id
vm_type = "c4.large"
keypair_name = var.keypair_name
image_id = var.image_id
vm_type = "c4.large"
keypair_name = var.keypair_name
security_group_ids = [outscale_security_group.security_group01.security_group_id]
nics {
nic_id = outscale_nic.nic01.nic_id
device_number = "0"
Expand All @@ -218,17 +267,14 @@ The following arguments are supported:

* `block_device_mappings` - (Optional) One or more block device mappings.
* `bsu` - Information about the BSU volume to create.
* `delete_on_vm_deletion` - (Optional) 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` - (Optional) 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 for `io1` volumes is `13000` with a maximum performance ratio of 300 IOPS per gibibyte.
* `snapshot_id` - (Optional) The ID of the snapshot used to create the volume.
* `volume_size` - (Optional) The size of the volume, in gibibytes (GiB).<br />
If you specify a snapshot ID, the volume size must be at least equal to the snapshot size.<br />
If you specify a snapshot ID but no volume size, the volume is created with a size similar to the snapshot one.
* `volume_type` - (Optional) The type of the volume (`standard` \| `io1` \| `gp2`). If not specified in the request, a `standard` volume is created.<br />
For more information about volume types, see [About Volumes > Volume Types and IOPS](https://docs.outscale.com/en/userguide/About-Volumes.html#_volume_types_and_iops).
* `device_name` - (Optional) The device name for the volume. For a root device, you must use `/dev/sda1`. For other volumes, you must use `/dev/sdX`, `/dev/sdXX`, `/dev/xvdX`, or `/dev/xvdXX` (where the first `X` is a letter between `b` and `z`, and the second `X` is a letter between `a` and `z`).
* `no_device` - (Optional) Removes the device which is included in the block device mapping of the OMI.
* `virtual_device_name` - (Optional) The name of the virtual device (`ephemeralN`).
* `delete_on_vm_deletion` - (Optional) 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` - (Optional) 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 for `io1` volumes is `13000` with a maximum performance ratio of 300 IOPS per gibibyte.
* `snapshot_id` - (Optional) The ID of the snapshot used to create the volume.
* `volume_size` - (Optional) The size of the volume, in gibibytes (GiB).
* `tags`- One or more tags associated with the VM.
* `key`- The key of the tag with a minimum of 1 character.
* `value` - The value of the tag, between 0 and 255 characters.

* `client_token` - (Optional) A unique identifier which enables you to manage the idempotency.
* `deletion_protection` - (Optional) If true, you cannot delete the VM unless you change this parameter back to false.
* `get_admin_password` - (Optional) (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.
Expand Down Expand Up @@ -263,8 +309,8 @@ For more information about volume types, see [About Volumes > Volume Types and I
* `subnet_id` - (Optional) 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.

* `private_ips` - (Optional) One or more private IPs of the VM.
* `security_group_ids` - (Optional) One or more IDs of security group for the VMs.
* `security_group_names` - (Optional) One or more names of security groups for the VMs.
* `security_group_ids` - (Optional) One or more IDs of security group for the VMs. You must specify at least one of the following parameters: `security_group_ids` or `security_group_names`.
* `security_group_names` - (Optional) One or more names of security groups for the VMs. You must specify at least one of the following parameters: `security_group_ids` or `security_group_names`.
* `state` - The state of the VM (`running` | `stopped`). If set to `stopped`, the VM is stopped regardless of the value of the `vm_initiated_shutdown_behavior` argument.
* `subnet_id` - (Optional) 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.
* `tags` - (Optional) A tag to add to this resource. You can specify this argument several times.
Expand Down
70 changes: 70 additions & 0 deletions docs/resources/volume_link.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
---
layout: "outscale"
page_title: "OUTSCALE: outscale_volume_link"
sidebar_current: "outscale-volume-link"
description: |-
[Manages a volume link.]
---

# outscale_volume_link Resource

Manages a volume link.

For more information on this resource, see the [User Guide](https://docs.outscale.com/en/userguide/About-Volumes.html).
For more information on this resource actions, see the [API documentation](https://docs.outscale.com/api#3ds-outscale-api-volume).

## Example Usage

### Required resources

```hcl
resource "outscale_volume" "volume01" {
subregion_name = "${var.region}a"
size = 40
}
resource "outscale_vm" "vm01" {
image_id = var.image_id
vm_type = var.vm_type
keypair_name = var.keypair_name
security_group_ids = [var.security_group_id]
}
```

### Link a volume to a VM

```hcl
resource "outscale_volume_link" "volumes_link01" {
device_name = "/dev/xvdc"
volume_id = outscale_volume.volume01.id
vm_id = outscale_vm.vm01.id
}
```

## Argument Reference

The following arguments are supported:

* `device_name` - (Required) The name of the device. For a root device, you must use `/dev/sda1`. For other volumes, you must use `/dev/sdX`, `/dev/sdXX`, `/dev/xvdX`, or `/dev/xvdXX` (where the first `X` is a letter between `b` and `z`, and the second `X` is a letter between `a` and `z`).
* `vm_id` - (Required) The ID of the VM you want to attach the volume to.
* `volume_id` - (Required) The ID of the volume you want to attach.

## Attribute Reference

The following attributes are exported:

* `delete_on_vm_deletion` - If true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
* `device_name` - The name of the device.
* `state` - The state of the attachment of the volume (`attaching` | `detaching` | `attached` | `detached`).
* `vm_id` - The ID of the VM.
* `volume_id` - The ID of the volume.

## Import

A volume link can be imported using a volume ID. For example:

```console

$ terraform import outscale_volume_link.ImportedVolumeLink vol-12345678

```
2 changes: 1 addition & 1 deletion scripts/docs/doc-terraform-template

0 comments on commit 89790c5

Please sign in to comment.