Skip to content

Commit 3ef7cbb

Browse files
bear454holyspectral
authored andcommitted
Add schema for required EKS Addon helm attributes
1 parent 87356c9 commit 3ef7cbb

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"$schema": "https://json-schema.org/draft/2019-09/schema",
3+
"properties": {
4+
"global" : {
5+
"type": "object",
6+
"properties": {
7+
"aws": {
8+
"type": "object",
9+
"properties": {
10+
"accountNumber": {
11+
"type": ["integer", "string"],
12+
"description": "AWS Account Number; Follow AWS subscription instruction"
13+
},
14+
"roleName": {
15+
"type": "string",
16+
"description": "AWS Role name for billing; Follow AWS subscription instruction"
17+
}
18+
},
19+
"required": [
20+
"accountNumber",
21+
"roleName"
22+
]
23+
}
24+
}
25+
}
26+
}
27+
}

0 commit comments

Comments
 (0)