update_provider_version
Update a Terraform provider's version, source URL, and documentation links to maintain accurate and up-to-date IaC resource information.
Instructions
Update an existing Terraform provider's version information and documentation links
Input Schema
Name | Required | Description | Default |
---|---|---|---|
new_doc_url | No | New documentation URL | |
new_source_url | No | New source URL | |
new_version | Yes | New version | |
provider_name | Yes | Name of the provider |
Input Schema (JSON Schema)
{
"description": "Update an existing Terraform provider's version information and documentation links",
"properties": {
"new_doc_url": {
"description": "New documentation URL",
"type": "string"
},
"new_source_url": {
"description": "New source URL",
"type": "string"
},
"new_version": {
"description": "New version",
"type": "string"
},
"provider_name": {
"description": "Name of the provider",
"type": "string"
}
},
"required": [
"provider_name",
"new_version"
],
"type": "object"
}