briareus
Version:
Briareus assists with Feature Branch deploys to ECS
15 lines (14 loc) • 564 B
JavaScript
module.exports = {
'$id': 'http://localhost:1234/healthcheck.json',
'properties': {
'path': { 'type': 'string', 'default': '/' },
'protocol': { 'type': 'string', 'default': 'HTTP' },
'interval': { 'type': 'integer', 'default': 35 },
'timeout': { 'type': 'integer', 'default': 30 },
'healthyThreshold': { 'type': 'integer', 'default': 3 },
'unhealthyThreshold': { 'type': 'integer', 'default': 2 },
'gracePeriod': { 'type': 'integer', 'default': 15 },
'matcherHttpCode': { 'type': 'string', 'default': '200' }
}
}