Skip to content

Latest commit

 

History

History
54 lines (40 loc) · 1.62 KB

File metadata and controls

54 lines (40 loc) · 1.62 KB
page_title spiceai_apps Data Source - spiceai
subcategory
description Retrieves a list of all Spice.ai apps in the authenticated organization.

spiceai_apps (Data Source)

Retrieves a list of all Spice.ai apps in the authenticated organization.

Example Usage

data "spiceai_apps" "all" {}

output "all_app_names" {
  value = [for app in data.spiceai_apps.all.apps : app.name]
}

Schema

Read-Only

Nested Schema for apps

Read-Only:

  • api_key (String, Sensitive) The API key for the app.
  • config (Attributes) The configuration of the app. (see below for nested schema)
  • created_at (String) The timestamp when the app was created.
  • description (String) A description of the app.
  • id (String) The unique identifier of the app.
  • name (String) The name of the app.
  • production_branch (String) The production branch for the app.
  • region (String) The region where the app is deployed.
  • visibility (String) The visibility of the app (public or private).

Nested Schema for apps.config

Read-Only:

  • image_tag (String) The Spice.ai runtime image tag.
  • node_group (String) The node group for the app.
  • replicas (Number) The number of replicas.
  • spicepod (String) The spicepod configuration as a JSON string.
  • storage_claim_size_gb (Number) The storage claim size in GB.