mirror of
https://github.com/fosrl/pangolin.git
synced 2026-04-28 19:59:54 +00:00
Merge dev into fix/log-analytics-adjustments
This commit is contained in:
parent
9db2feff77
commit
d490cab48c
555 changed files with 9375 additions and 9287 deletions
|
|
@ -14,7 +14,8 @@ export const configSchema = z
|
|||
.object({
|
||||
app: z
|
||||
.object({
|
||||
dashboard_url: z.url()
|
||||
dashboard_url: z
|
||||
.url()
|
||||
.pipe(z.url())
|
||||
.transform((url) => url.toLowerCase())
|
||||
.optional(),
|
||||
|
|
@ -255,7 +256,10 @@ export const configSchema = z
|
|||
.object({
|
||||
block_size: z.number().positive().gt(0).optional().default(24),
|
||||
subnet_group: z.string().optional().default("100.90.128.0/24"),
|
||||
utility_subnet_group: z.string().optional().default("100.96.128.0/24") //just hardcode this for now as well
|
||||
utility_subnet_group: z
|
||||
.string()
|
||||
.optional()
|
||||
.default("100.96.128.0/24") //just hardcode this for now as well
|
||||
})
|
||||
.optional()
|
||||
.default({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue