mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Ingest Manager] Better validation of registry urls (#80685)
This commit is contained in:
parent
07c1284e9d
commit
d10d70b2ac
1 changed files with 2 additions and 2 deletions
|
@ -30,8 +30,8 @@ export const config: PluginConfigDescriptor = {
|
|||
],
|
||||
schema: schema.object({
|
||||
enabled: schema.boolean({ defaultValue: true }),
|
||||
registryUrl: schema.maybe(schema.uri()),
|
||||
registryProxyUrl: schema.maybe(schema.uri()),
|
||||
registryUrl: schema.maybe(schema.uri({ scheme: ['http', 'https'] })),
|
||||
registryProxyUrl: schema.maybe(schema.uri({ scheme: ['http', 'https'] })),
|
||||
agents: schema.object({
|
||||
enabled: schema.boolean({ defaultValue: true }),
|
||||
tlsCheckDisabled: schema.boolean({ defaultValue: false }),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue