litellm/terraform/provider/docs/data-sources/guardrail.md
Shivam Rawat 3653e5893f
feat(terraform): resource and data source parity with the community provider (#38158)
* feat(terraform): close key/team schema gaps, fix team read envelope, add import support

* feat(terraform): add fallback resource/data source and key/team block resources

* feat(terraform): add access group and unified access group resources and data sources

* feat(terraform): add guardrail and prompt resources and data sources

* feat(terraform): add agent and search tool resources and data sources

* feat(terraform): add user and budget resources and data sources

* feat(terraform): add tag and project resources and data sources

* docs(terraform): changelog and readme for parity additions

* feat(terraform): add data sources for keys, teams, models, organizations, and mcp servers

* fix(terraform): key update 400 on empty budget_duration, key info envelope, config-supplied key

* fix(terraform): hash raw keys to SHA-256 tokens in key lookup URLs and block resource IDs
2026-08-28 16:55:40 -07:00

816 B

litellm_guardrail Data Source

Retrieves information about an existing LiteLLM guardrail by ID. Sensitive litellm_params are not exposed.

Example Usage

data "litellm_guardrail" "existing" {
  guardrail_id = "123e4567-e89b-12d3-a456-426614174000"
}

output "guardrail_name" {
  value = data.litellm_guardrail.existing.guardrail_name
}

Argument Reference

  • guardrail_id - (Required) Unique identifier of the guardrail to retrieve.

Attribute Reference

  • guardrail_name - Human-readable name of the guardrail.
  • guardrail_info - Map of additional metadata for the guardrail.
  • guardrail_definition_location - Where the guardrail is defined: config or db.
  • created_at - Timestamp when the guardrail was created.
  • updated_at - Timestamp when the guardrail was last updated.