Skip to main content
Retrieve available parameter values for CoreWeave Managed Inference deployments.

Example usage

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)
  • runtime_versions (Attributes Map) Available runtime versions per engine (keyed by engine name). (see below for nested schema)

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.
Last modified on June 23, 2026