terraform/provider/docs/data-sources/credential.md
Retrieves information about an existing LiteLLM credential. This data source allows you to reference credentials that were created outside of Terraform or in other Terraform configurations.
# Retrieve an existing credential by name
data "litellm_credential" "existing_openai" {
credential_name = "openai-production-key"
}
# Use the credential in a model resource
resource "litellm_model" "gpt4_with_existing_cred" {
model_name = "gpt-4-with-existing-cred"
custom_llm_provider = "openai"
base_model = "gpt-4"
tier = "paid"
mode = "chat"
# Reference the existing credential's info
additional_litellm_params = {
credential_name = data.litellm_credential.existing_openai.credential_name
}
}
# Retrieve a credential associated with a specific model
data "litellm_credential" "model_specific_cred" {
credential_name = "claude-api-key"
model_id = "claude-3-sonnet"
}
# Use in a vector store
resource "litellm_vector_store" "knowledge_base" {
vector_store_name = "claude-knowledge-base"
custom_llm_provider = "anthropic"
litellm_credential_name = data.litellm_credential.model_specific_cred.credential_name
vector_store_description = "Knowledge base using Claude credentials"
}
# Get credential info to use in other resources
data "litellm_credential" "shared_cred" {
credential_name = "shared-api-key"
}
# Create multiple resources using the same credential
resource "litellm_vector_store" "store_1" {
vector_store_name = "store-1"
custom_llm_provider = "pinecone"
litellm_credential_name = data.litellm_credential.shared_cred.credential_name
vector_store_description = "First store using shared credential"
}
resource "litellm_vector_store" "store_2" {
vector_store_name = "store-2"
custom_llm_provider = "pinecone"
litellm_credential_name = data.litellm_credential.shared_cred.credential_name
vector_store_description = "Second store using shared credential"
}
The following arguments are supported:
credential_name - (Required) Name of the credential to retrieve.model_id - (Optional) Model ID associated with this credential. Use this when the same credential name is used for different models.In addition to all arguments above, the following attributes are exported:
credential_info - Map of additional non-sensitive information about the credential.For security reasons, the credential_values (sensitive data like API keys) are not exposed through data sources. This prevents accidental exposure of sensitive information in Terraform plans and logs. If you need to access credential values, you should manage them through the resource directly or use external secret management systems.
Use data sources to reference credentials created in other Terraform configurations or stacks:
data "litellm_credential" "shared_openai" {
credential_name = "openai-shared-key"
}
resource "litellm_model" "gpt4" {
model_name = "gpt-4-cross-stack"
custom_llm_provider = "openai"
base_model = "gpt-4"
additional_litellm_params = {
credential_reference = data.litellm_credential.shared_openai.credential_name
}
}
Use credential information for conditional resource creation:
data "litellm_credential" "optional_cred" {
credential_name = var.credential_name
}
resource "litellm_vector_store" "conditional_store" {
count = length(data.litellm_credential.optional_cred.credential_info) > 0 ? 1 : 0
vector_store_name = "conditional-store"
custom_llm_provider = "weaviate"
litellm_credential_name = data.litellm_credential.optional_cred.credential_name
}
Verify that required credentials exist before creating dependent resources:
data "litellm_credential" "required_cred" {
credential_name = "production-api-key"
}
# This will fail if the credential doesn't exist
resource "litellm_model" "production_model" {
model_name = "production-gpt-4"
custom_llm_provider = "openai"
base_model = "gpt-4"
additional_litellm_params = {
credential_name = data.litellm_credential.required_cred.credential_name
}
}