Skip to content

Commit

Permalink
fixed links
Browse files Browse the repository at this point in the history
  • Loading branch information
YulNaumenko committed Sep 27, 2021
1 parent 5417af8 commit 37f8698
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/management/connectors/action-types/email.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ NOTE: You must use your Amazon SES SMTP credentials to send email through
[[exchange]]
==== Sending email from Microsoft Exchange

deprecated::[This Microsoft Exchange configuration is deprecated in 7.16.0, and will be removed later, because of the Microsoft announcement about deprecating https://docs.microsoft.com/en-us/lifecycle/announcements/exchange-online-basic-auth-deprecated[Basic Authentication]. To prepare for the removal of Basic Auth, you must update all existing Microsoft Exchange connectors with the new configuration based on the https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-client-creds-grant-flow[OAuth 2.0 Client Credentials Authentication].
deprecated:[This Microsoft Exchange configuration is deprecated in 7.16.0, and will be removed later, because of the Microsoft announcement about deprecating https://docs.microsoft.com/en-us/lifecycle/announcements/exchange-online-basic-auth-deprecated [Basic Authentication]. To prepare for the removal of Basic Auth, you must update all existing Microsoft Exchange connectors with the new configuration based on the https://docs.microsoft.com/en-us/azure/active-directory/develop/v2-oauth2-client-creds-grant-flow[OAuth 2.0 Client Credentials Authentication].

[source,text]
--------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion src/core/public/doc_links/doc_links_service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,8 @@ export class DocLinksService {
apmRules: `${KIBANA_DOCS}apm-alerts.html`,
emailAction: `${KIBANA_DOCS}email-action-type.html`,
emailActionConfig: `${KIBANA_DOCS}email-action-type.html`,
emailExchangeActionConfig: `${KIBANA_DOCS}email-action-type.html#exchange`,
emailExchangeClientSecretConfig: `${KIBANA_DOCS}email-action-type.html#exchange-client-secret`,
emailExchangeClientIdConfig: `${KIBANA_DOCS}email-action-type.html#exchange-client-tenant-id`,
generalSettings: `${KIBANA_DOCS}alert-action-settings-kb.html#general-alert-action-settings`,
indexAction: `${KIBANA_DOCS}index-action-type.html`,
esQuery: `${KIBANA_DOCS}rule-type-es-query.html`,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ const ExchangeFormFields: React.FunctionComponent<ExchangeFormFieldsProps> = ({
}
)}
helpText={
<EuiLink href={docLinks.links.alerting.emailExchangeActionConfig} target="_blank">
<EuiLink href={docLinks.links.alerting.emailExchangeClientIdConfig} target="_blank">
<FormattedMessage
id="xpack.triggersActionsUI.components.builtinActionTypes.email.exchangeForm.tenantIdHelpLabel"
defaultMessage="Configure Tenant ID"
Expand Down Expand Up @@ -106,7 +106,7 @@ const ExchangeFormFields: React.FunctionComponent<ExchangeFormFieldsProps> = ({
}
)}
helpText={
<EuiLink href={docLinks.links.alerting.emailExchangeActionConfig} target="_blank">
<EuiLink href={docLinks.links.alerting.emailExchangeClientIdConfig} target="_blank">
<FormattedMessage
id="xpack.triggersActionsUI.components.builtinActionTypes.email.exchangeForm.clientIdHelpLabel"
defaultMessage="Configure Client ID"
Expand Down Expand Up @@ -159,7 +159,10 @@ const ExchangeFormFields: React.FunctionComponent<ExchangeFormFieldsProps> = ({
}
)}
helpText={
<EuiLink href={docLinks.links.alerting.emailExchangeActionConfig} target="_blank">
<EuiLink
href={docLinks.links.alerting.emailExchangeClientSecretConfig}
target="_blank"
>
<FormattedMessage
id="xpack.triggersActionsUI.components.builtinActionTypes.email.exchangeForm.clientSecretHelpLabel"
defaultMessage="Configure Client Secret"
Expand Down

0 comments on commit 37f8698

Please sign in to comment.