cozystack/packages/apps/vpc/values.schema.json
Timofei Larkin eeb85eed39 Merge branch 'main' into testing/add-vpc
Signed-off-by: Timofei Larkin <lllamnyp@gmail.com>
2025-10-30 14:59:28 +03:00

23 lines
No EOL
455 B
JSON

{
"title": "Chart Values",
"type": "object",
"properties": {
"subnets": {
"description": "Subnets of a VPC",
"type": "object",
"default": {},
"additionalProperties": {
"type": "object",
"required": [
"cidr"
],
"properties": {
"cidr": {
"description": "Subnet CIDR, e.g. 192.168.0.0/24",
"type": "string"
}
}
}
}
}
}