Skip to content

Commit

Permalink
[Ingest Manager] Fix enrollment instructions missing args (elastic#79730
Browse files Browse the repository at this point in the history
)
  • Loading branch information
nchaulet authored Oct 6, 2020
1 parent 1ba8666 commit 5853abc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const ManualInstructions: React.FunctionComponent<Props> = ({
apiKey,
kibanaCASha256,
}) => {
const enrollArgs = `${kibanaUrl} ${apiKey.api_key}${
const enrollArgs = `--kibana-url=${kibanaUrl} --enrollment-token=${apiKey.api_key}${
kibanaCASha256 ? ` --ca_sha256=${kibanaCASha256}` : ''
}`;

Expand Down

0 comments on commit 5853abc

Please sign in to comment.