get_resource_version_compatibility
Verify Terraform resource compatibility with specific provider versions to ensure smooth deployments and avoid version conflicts.
Instructions
Check resource compatibility across provider versions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
provider_name | Yes | Name of the Terraform provider | |
resource_name | Yes | Name of the resource to check | |
version | Yes | Target provider version to check compatibility against |
Input Schema (JSON Schema)
{
"description": "Check resource compatibility across provider versions",
"properties": {
"provider_name": {
"description": "Name of the Terraform provider",
"type": "string"
},
"resource_name": {
"description": "Name of the resource to check",
"type": "string"
},
"version": {
"description": "Target provider version to check compatibility against",
"type": "string"
}
},
"required": [
"provider_name",
"resource_name",
"version"
],
"type": "object"
}