Skip to content

Commit

Permalink
Allow * for whitelistedHosts (#46384)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikecote committed Sep 24, 2019
1 parent 0064014 commit 03f8e9d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion x-pack/legacy/plugins/actions/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ export function actions(kibana: any) {
.keys({
enabled: Joi.boolean().default(false),
whitelistedHosts: Joi.array()
.items(Joi.string().hostname())
.items(
Joi.string()
.hostname()
.allow('*')
)
.sparse(false)
.default([]),
})
Expand Down

0 comments on commit 03f8e9d

Please sign in to comment.