Skip to content

Commit

Permalink
Add schema for required EKS Addon helm attributes
Browse files Browse the repository at this point in the history
  • Loading branch information
bear454 committed Sep 4, 2024
1 parent 87356c9 commit 8a5085a
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions charts/core/aws_mp_configuration_schema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"$schema": "https://json-schema.org/draft/2019-09/schema",
"properties": {
"global" : {
"type": "object",
"properties": {
"aws": {
"type": "object",
"properties": {
"accountNumber": {
"type": ["integer", "string"],
"description": "AWS Account Number; Follow AWS subscription instruction"
},
"roleName": {
"type": "string",
"description": "AWS Role name for billing; Follow AWS subscription instruction"
}
},
"required": [
"accountNumber",
"roleName"
]
}
}
}
}
}

0 comments on commit 8a5085a

Please sign in to comment.