chore: update config schema

This commit is contained in:
Bojan Rajkovic 2024-07-06 11:11:55 -04:00
parent a114563481
commit 2345d42a27
No known key found for this signature in database
GPG Key ID: 8AC72CCDAF2F66E1

View File

@ -1741,6 +1741,16 @@
},
"terraform": {
"default": {
"commands": [
[
"terraform",
"version"
],
[
"tofu",
"version"
]
],
"detect_extensions": [
"tf",
"tfplan",
@ -6057,6 +6067,25 @@
"items": {
"type": "string"
}
},
"commands": {
"default": [
[
"terraform",
"version"
],
[
"tofu",
"version"
]
],
"type": "array",
"items": {
"type": "array",
"items": {
"type": "string"
}
}
}
},
"additionalProperties": false