get_provider_version_history
Track and retrieve the version history of a Terraform provider to manage and audit Infrastructure-as-Code updates effectively.
Instructions
Retrieve version history for a specific Terraform provider
Input Schema
Name | Required | Description | Default |
---|---|---|---|
provider_name | Yes | Name of the Terraform provider |
Input Schema (JSON Schema)
{
"description": "Retrieve version history for a specific Terraform provider",
"properties": {
"provider_name": {
"description": "Name of the Terraform provider",
"type": "string"
}
},
"required": [
"provider_name"
],
"type": "object"
}