Vultr DocsLatest Content


vultr_inference

Updated on 15 September, 2025

A data source for retrieving information about a Vultr Serverless Inference subscription using filters.


Get information about a Vultr Serverless Inference subscription.

Example Usage

Get the information for an inference subscription by label:

hcl
data "vultr_inference" "example_inference" {
  filter {
    name   = "label"
    values = ["my_inference_label"]
  }
}

Argument Reference

The following arguments are supported:

  • filter - (Required) Query parameters for finding inference subscriptions.

The filter block supports the following:

  • name - Attribute name to filter with.
  • values - One or more values filter with.

Attributes Reference

The following attributes are exported:

  • date_created - The date the inference subscription was added to your Vultr account.
  • label - The inference subscription's label.
  • api_key - The inference subscription's API key for accessing the Vultr Inference API.

Comments

No comments yet.