Skip to content

frostmoln_image (Data Source)

Look up a single image by ID or name.

Example Usage

terraform
data "frostmoln_image" "ubuntu" {
  name = "ubuntu-24.04"
}

output "ubuntu_image_id" {
  value = data.frostmoln_image.ubuntu.id
}

Schema

Optional

  • id (String) The unique identifier of the image. Exactly one of id or name must be specified.
  • name (String) The name of the image. Exactly one of id or name must be specified.

Read-Only

  • created_at (String) The timestamp when the image was created.
  • min_disk_gb (Number) Minimum disk size in GB required by the image.
  • min_ram_mb (Number) Minimum RAM in MB required by the image.
  • os_distro (String) The OS distribution of the image.
  • os_version (String) The OS version of the image.
  • status (String) The status of the image.