Skip to content

Commit

Permalink
Update fargate cpu memory schema (#3880)
Browse files Browse the repository at this point in the history
  • Loading branch information
kddejong authored Dec 13, 2024
1 parent b9bd808 commit f920591
Showing 1 changed file with 17 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,14 +51,23 @@
}
},
"Memory": {
"enum": [
"0.5 GB",
"1 GB",
"2 GB",
"512",
"1024",
"2048"
]
"else": {
"pattern": "^(0.5|1|2)\\s*(?i)GB$"
},
"if": {
"pattern": "^\\d+$",
"type": [
"integer",
"string"
]
},
"then": {
"enum": [
512,
1024,
2048
]
}
}
}
},
Expand Down

0 comments on commit f920591

Please sign in to comment.