Terraform provider reference / data sources / images

fiberax_images (Data Source)

Images a server of the chosen type can be built from.

Example Usage

# Every image of a type. The optional `type` filter narrows the list to one kind
# (operating system images only, for example).
data "fiberax_images" "os" {
  server_type_id = data.fiberax_server_type.cluster.id
  type           = "os"
}

output "images" {
  value = [for i in data.fiberax_images.os.images : i.name]
}

Schema

Required

Optional

Read-Only

Nested Schema for images

Read-Only:

Generated from the provider schema for version 0.3.0. How to install the provider: Terraform provider.