Files
cozystack/packages/apps/vpc/values.schema.json
2025-10-31 17:48:17 +03:00

20 lines
389 B
JSON

{
"title": "Chart Values",
"type": "object",
"properties": {
"subnets": {
"description": "Subnets of a VPC",
"type": "object",
"default": {},
"additionalProperties": {
"type": "object",
"properties": {
"cidr": {
"description": "IP address range",
"type": "string"
}
}
}
}
}
}