Manages Vultr Serverless Inference subscriptions for deploying and running machine learning models in the cloud.
Provides a Vultr Serverless Inference resource. This can be used to create, read, modify, and delete managed inference subscriptions on your Vultr account.
Create a new inference subscription:
resource "vultr_inference" "my_inference_subscription" {
label = "my_inference_label"
}
The following arguments are supported:
label
- (Required) A label for the inference subscription.The following attributes are exported:
id
- The ID of the inference subscription.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.Inference subscriptions can be imported using the subscription's ID
, e.g.
terraform import vultr_inference.my_inference_subscription b6a859c5-b299-49dd-8888-b1abbc517d08
No comments yet.