Snapshot

Creates and manages snapshot objects.

Manages Snapshots on IonosCloud.

Example Usage

data "ionoscloud_image" "example" {
    type                  = "HDD"
    image_alias           = "ubuntu:latest"
    location              = "us/las"
}

resource "ionoscloud_datacenter" "example" {
    name                  = "Datacenter Example"
    location              = "us/las"
    description           = "Datacenter Description"
    sec_auth_protection   = false
}

resource "ionoscloud_lan" "example" {
    datacenter_id         = ionoscloud_datacenter.example.id
    public                = true
    name                  = "Lan Example"
}

resource "ionoscloud_server" "example" {
    name                  = "Server Example"
    datacenter_id         = ionoscloud_datacenter.example.id
    cores                 = 1
    ram                   = 1024
    availability_zone     = "ZONE_1"
    cpu_family            = "AMD_OPTERON"
    image_name            = data.ionoscloud_image.example.id
    image_password        = random_password.server_image_password.result
    type                  = "ENTERPRISE"
    volume {
        name              = "system"
        size              = 5
        disk_type         = "SSD Standard"
        user_data         = "foo"
        bus               = "VIRTIO"
        availability_zone = "ZONE_1"
    }
}

resource "ionoscloud_snapshot" "test_snapshot" {
  datacenter_id = ionoscloud_datacenter.example.id
  volume_id     = ionoscloud_server.example.boot_volume
  name          = "Snapshot Example"
}

resource "random_password" "server_image_password" {
  length           = 16
  special          = false
}

Argument reference

  • datacenter_id - (Required)[string] The ID of the Virtual Data Center.

  • name - (Required)[string] The name of the snapshot.

  • volume_id - (Required)[string] The ID of the specific volume to take the snapshot from.

  • description - (Optional)(Computed)[string] Human readable description

  • licence_type - (Optional)(Computed)[string] OS type of this Snapshot

  • cpu_hot_plug - (Optional)(Computed)[string] Is capable of CPU hot plug (no reboot required). Can only be updated.

  • ram_hot_plug - (Optional)(Computed)[string] Is capable of memory hot plug (no reboot required). Can only be updated.

  • disc_virtio_hot_plug - (Optional)(Computed)[string] Is capable of Virt-IO drive hot plug (no reboot required). Can only be updated.

  • disc_virtio_hot_unplug - (Optional)(Computed)[string] Is capable of Virt-IO drive hot unplug (no reboot required). This works only for non-Windows virtual Machines. Can only be updated.

  • nic_hot_plug - (Optional)(Computed)[string] Is capable of nic hot plug (no reboot required). Can only be updated.

  • nic_hot_unplug - (Optional)(Computed)[string] Is capable of nic hot unplug (no reboot required). Can only be updated.

Attribute reference

Beside the configurable arguments, the resource returns the following additional attributes:

  • location - Location of that image/snapshot

  • size - The size of the image in GB

  • sec_auth_protection - Boolean value representing if the snapshot requires extra protection e.g. two factor protection

  • cpu_hot_unplug - Is capable of CPU hot unplug (no reboot required)

  • ram_hot_unplug - Is capable of memory hot unplug (no reboot required)

  • disc_scsi_hot_plug - Is capable of SCSI drive hot plug (no reboot required)

  • disc_scsi_hot_unplug - Is capable of SCSI drive hot unplug (no reboot required). This works only for non-Windows virtual Machines.

Import

Resource Snapshot can be imported using the snapshot id, e.g.

terraform import ionoscloud_snapshot.mysnapshot {snapshot uuid}

Last updated