-
Notifications
You must be signed in to change notification settings - Fork 0
/
providers.schema.json
43 lines (43 loc) · 918 Bytes
/
providers.schema.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"type": "object",
"required": [
".schema_version",
".sdk_type",
"name",
"type",
"version",
"provider",
"resources",
"data_sources"
],
"properties": {
".schema_version": {
"type": "string",
"enum": ["2"]
},
".sdk_type": {
"type": "string",
"enum": ["terraform-plugin-sdk-v2"]
},
"name": {
"type": "string"
},
"type": {
"type": "string",
"enum": ["provider"]
},
"version": {
"type": "string",
"pattern": "^v[0-9]+\\.[0-9]+\\.[0-9]+(-[a-zA-Z0-9]+)?$"
},
"provider": {
"type": "object"
},
"resources": {
"type": "object"
},
"data_sources": {
"type": "object"
}
}
}