> ## Documentation Index
> Fetch the complete documentation index at: https://docs.coreweave.com/llms.txt
> Use this file to discover all available pages before exploring further.

# coreweave_inference_deployment_parameters (Data source)

> Terraform data source for querying available Managed Inference deployment parameters

Retrieve available parameter values for [CoreWeave Managed Inference deployments](/products/inference/getting-started).

## Example usage

```terraform theme={"system"}
data "coreweave_inference_deployment_parameters" "deploy_params" {}

output "gateway_ids" {
  value = data.coreweave_inference_deployment_parameters.deploy_params.gateway_ids
}

output "instance_types" {
  value = data.coreweave_inference_deployment_parameters.deploy_params.instance_types
}

output "vllm_versions" {
  value = data.coreweave_inference_deployment_parameters.deploy_params.runtime_versions["vllm"].versions
}
```

## Schema

### Read-Only

* `gateway_ids` (Set of String) Gateway IDs available for the current organization.
* `instance_types` (Set of String) Available instance types for deployments.
* `runtime_config_options` (Attributes Map) Available runtime config options per engine (keyed by engine name). (see [below for nested schema](#nestedatt--runtime_config_options))
* `runtime_versions` (Attributes Map) Available runtime versions per engine (keyed by engine name). (see [below for nested schema](#nestedatt--runtime_versions))

### Nested Schema for `runtime_config_options`

Read-Only:

* `allowed_keys` (List of String) Configuration keys accepted by the engine's `engine_config` field.

### Nested Schema for `runtime_versions`

Read-Only:

* `versions` (List of String) Available semver versions for the engine, sorted by the API.
