[One Workflow] Migrate http step to new connector#249004
Merged
semd merged 49 commits intoelastic:mainfrom Feb 24, 2026
Merged
Conversation
Contributor
Author
|
/ci |
Contributor
Author
|
/ci |
Contributor
Author
|
/ci |
Contributor
Author
|
/ci |
…ector' into workflows_http_connector
Contributor
Author
|
@elasticmachine merge upstream |
pmuellr
reviewed
Feb 20, 2026
pmuellr
requested changes
Feb 20, 2026
Contributor
pmuellr
left a comment
There was a problem hiding this comment.
I didn't look at the significance of the removed tests, but figured I'd ask if we can keep them somehow - maybe there is a good reason we should remove them! Not sure :-)
Also, the CODEOWNERS comment ...
Kiryous
approved these changes
Feb 20, 2026
Contributor
Kiryous
left a comment
There was a problem hiding this comment.
Thanks for this foundational work! LGTM
pmuellr
approved these changes
Feb 20, 2026
Contributor
pmuellr
left a comment
There was a problem hiding this comment.
ResponseOps changes LGTM
Contributor
Author
|
@elasticmachine merge upstream |
Contributor
|
merge conflict between base and head |
…ector' into workflows_http_connector
Contributor
⏳ Build in-progress, with failures
Failed CI StepsTest Failures
History
cc @semd |
mbondyra
added a commit
to rgodfrey-elastic/kibana
that referenced
this pull request
Feb 24, 2026
…ps-config-rebase * commit 'f135f030951237c5e9b0251931441aee3121b31d': (163 commits) [CPS] Support data view requests and do not sanitize project_routing in data plugin/resolve indices (elastic#253654) [One Workflow] Execute workflow from historical (elastic#253396) [streams][background tasks] gracefully handle non existing stream (elastic#254683) [Lens API] Waffle/Mosaic get green as a default color (elastic#254304) [Security Solution] Remove prebuilt rules customization callout on Rule Management page (elastic#254386) [Workflows] support passing attachments to run_agent step (elastic#251291) [One Discover][Logs UX] Update OpenTelemetry Semantic Conventions (elastic#254367) [kbn-es] Add --docker flag to yarn es snapshot (elastic#254306) [Workplace AI] Remove Data Source Config (elastic#254521) [Entity Store v2] Add CRUD API (elastic#252052) [CI] Increase type checking machine (elastic#254676) [main] Sync bundled packages with Package Storage (elastic#254232) Skip flaky test elastic#254625 (elastic#254662) Upgrade `@elastic/elasticsearch` to 9.3.1 (elastic#253660) [One Workflow] Migrate http step to new connector (elastic#249004) [Entity Store] Store EUID Scripts (elastic#254515) [APM] Fix Otel missing fields undefined errors (elastic#254271) [Console] Add support for documentation links on Serverless (elastic#254489) Create edit ILM flow (elastic#253393) [Agent Builder] Mid term: minimal recommended model set elastic#12875 (elastic#254560) ...
nreese
pushed a commit
to nreese/kibana
that referenced
this pull request
Feb 25, 2026
## Summary Replaces the internal `http` workflow step with a new workflows-specific `http` connector, preserving the existing step interface while enabling connector-backed HTTP execution. Issue: * elastic/security-team#15301 ## Context Workflows currently expose an internal `http` step type that allows arbitrary HTTP requests to be executed directly from workflow definitions. This implementation is self-contained and bypasses the connector framework. The goal is to support HTTP requests backed by connectors in order to gain: * Secure secret and credential management * Reusability across workflows * Centralized configuration (e.g. base URL, authentication, default headers) At the same time, we want to avoid introducing breaking changes to existing workflows. ## Why introduce a new `.http` connector The internal `http` step solves parameter flexibility, but comes with significant drawbacks: * No secret or credential management * Authentication details must be embedded directly in workflow definitions * No reuse or centralized configuration We considered extending the webhook connector to support dynamic parameters, but rejected this option due to its widespread usage across other teams and products, and the risk of introducing behavioral changes or additional complexity outside of workflows. Instead, this PR introduces a new workflows-specific `http` connector, derived from the `webhook` connector implementation but designed to: * Allow dynamic request parameters at execution time * Leverage the connector framework for secrets and credentials * Transparently replace the internal `http` step (same step signature), avoiding breaking changes This effectively migrates workflows from an internal HTTP implementation to a connector-backed model while maintaining backward compatibility. ### Screenshots No available from the stack connectors creation flow: <img width="965" height="599" alt="Captura de pantalla 2026-02-11 a les 13 40 20" src="https://github.com/user-attachments/assets/cf721676-a8ee-4b42-98c8-882bd6f33f6f" /> Connector creation flow available from within Workflows: <img width="727" height="227" alt="Captura de pantalla 2026-02-11 a les 13 43 04" src="https://github.com/user-attachments/assets/fd27e989-5991-4f61-b17e-d5dbf12d58f6" /> <img width="1351" height="862" alt="Captura de pantalla 2026-02-11 a les 13 46 59" src="https://github.com/user-attachments/assets/dff8a29d-3220-437c-af6d-22f21f342f5c" /> #### Configuration: <img width="964" height="937" alt="Captura de pantalla 2026-01-16 a les 16 38 54" src="https://github.com/user-attachments/assets/c538f341-d6c6-44b8-bb86-affbb1266a99" /> <img width="964" height="937" alt="Captura de pantalla 2026-01-16 a les 16 38 32" src="https://github.com/user-attachments/assets/b527117a-65fb-4d97-8654-e338ce24c11f" /> <img width="964" height="937" alt="Captura de pantalla 2026-01-16 a les 16 38 17" src="https://github.com/user-attachments/assets/3051bab6-f1fb-44a2-b0cc-4ed40be0c1d7" /> #### Usage: With `connector-id`. <img width="1450" height="607" alt="Captura de pantalla 2026-01-16 a les 16 52 19" src="https://github.com/user-attachments/assets/ac09aaf2-e74f-43b5-af68-c9d28bac8de2" /> Without `connector-id`. <img width="1450" height="607" alt="Captura de pantalla 2026-01-16 a les 16 51 23" src="https://github.com/user-attachments/assets/a6d14213-0886-430e-ab22-83d293292059" /> --------- Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
semd
added a commit
that referenced
this pull request
Mar 6, 2026
…256084) ## Summary Follow-up of: - #249004 We missed the serverless `enabledActionTypes` configs when implementing the new connector. It needs to be enabled for: - es - observability (logs essentials): Workflows disabled in this tier, but just in case it's enabled someday So workflows don't crash when using `.http` and `.http-system` connectors. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
kapral18
pushed a commit
to kapral18/kibana
that referenced
this pull request
Mar 9, 2026
…lastic#256084) ## Summary Follow-up of: - elastic#249004 We missed the serverless `enabledActionTypes` configs when implementing the new connector. It needs to be enabled for: - es - observability (logs essentials): Workflows disabled in this tier, but just in case it's enabled someday So workflows don't crash when using `.http` and `.http-system` connectors. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
qn895
pushed a commit
to qn895/kibana
that referenced
this pull request
Mar 11, 2026
## Summary Replaces the internal `http` workflow step with a new workflows-specific `http` connector, preserving the existing step interface while enabling connector-backed HTTP execution. Issue: * elastic/security-team#15301 ## Context Workflows currently expose an internal `http` step type that allows arbitrary HTTP requests to be executed directly from workflow definitions. This implementation is self-contained and bypasses the connector framework. The goal is to support HTTP requests backed by connectors in order to gain: * Secure secret and credential management * Reusability across workflows * Centralized configuration (e.g. base URL, authentication, default headers) At the same time, we want to avoid introducing breaking changes to existing workflows. ## Why introduce a new `.http` connector The internal `http` step solves parameter flexibility, but comes with significant drawbacks: * No secret or credential management * Authentication details must be embedded directly in workflow definitions * No reuse or centralized configuration We considered extending the webhook connector to support dynamic parameters, but rejected this option due to its widespread usage across other teams and products, and the risk of introducing behavioral changes or additional complexity outside of workflows. Instead, this PR introduces a new workflows-specific `http` connector, derived from the `webhook` connector implementation but designed to: * Allow dynamic request parameters at execution time * Leverage the connector framework for secrets and credentials * Transparently replace the internal `http` step (same step signature), avoiding breaking changes This effectively migrates workflows from an internal HTTP implementation to a connector-backed model while maintaining backward compatibility. ### Screenshots No available from the stack connectors creation flow: <img width="965" height="599" alt="Captura de pantalla 2026-02-11 a les 13 40 20" src="https://github.com/user-attachments/assets/cf721676-a8ee-4b42-98c8-882bd6f33f6f" /> Connector creation flow available from within Workflows: <img width="727" height="227" alt="Captura de pantalla 2026-02-11 a les 13 43 04" src="https://github.com/user-attachments/assets/fd27e989-5991-4f61-b17e-d5dbf12d58f6" /> <img width="1351" height="862" alt="Captura de pantalla 2026-02-11 a les 13 46 59" src="https://github.com/user-attachments/assets/dff8a29d-3220-437c-af6d-22f21f342f5c" /> #### Configuration: <img width="964" height="937" alt="Captura de pantalla 2026-01-16 a les 16 38 54" src="https://github.com/user-attachments/assets/c538f341-d6c6-44b8-bb86-affbb1266a99" /> <img width="964" height="937" alt="Captura de pantalla 2026-01-16 a les 16 38 32" src="https://github.com/user-attachments/assets/b527117a-65fb-4d97-8654-e338ce24c11f" /> <img width="964" height="937" alt="Captura de pantalla 2026-01-16 a les 16 38 17" src="https://github.com/user-attachments/assets/3051bab6-f1fb-44a2-b0cc-4ed40be0c1d7" /> #### Usage: With `connector-id`. <img width="1450" height="607" alt="Captura de pantalla 2026-01-16 a les 16 52 19" src="https://github.com/user-attachments/assets/ac09aaf2-e74f-43b5-af68-c9d28bac8de2" /> Without `connector-id`. <img width="1450" height="607" alt="Captura de pantalla 2026-01-16 a les 16 51 23" src="https://github.com/user-attachments/assets/a6d14213-0886-430e-ab22-83d293292059" /> --------- Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com> Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
qn895
pushed a commit
to qn895/kibana
that referenced
this pull request
Mar 11, 2026
…lastic#256084) ## Summary Follow-up of: - elastic#249004 We missed the serverless `enabledActionTypes` configs when implementing the new connector. It needs to be enabled for: - es - observability (logs essentials): Workflows disabled in this tier, but just in case it's enabled someday So workflows don't crash when using `.http` and `.http-system` connectors. --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Replaces the internal
httpworkflow step with a new workflows-specifichttpconnector, preserving the existing step interface while enabling connector-backed HTTP execution.Issue:
Context
Workflows currently expose an internal
httpstep type that allows arbitrary HTTP requests to be executed directly from workflow definitions. This implementation is self-contained and bypasses the connector framework.The goal is to support HTTP requests backed by connectors in order to gain:
At the same time, we want to avoid introducing breaking changes to existing workflows.
Why introduce a new
.httpconnectorThe internal
httpstep solves parameter flexibility, but comes with significant drawbacks:We considered extending the webhook connector to support dynamic parameters, but rejected this option due to its widespread usage across other teams and products, and the risk of introducing behavioral changes or additional complexity outside of workflows.
Instead, this PR introduces a new workflows-specific
httpconnector, derived from thewebhookconnector implementation but designed to:httpstep (same step signature), avoiding breaking changesThis effectively migrates workflows from an internal HTTP implementation to a connector-backed model while maintaining backward compatibility.
Screenshots
No available from the stack connectors creation flow:
Connector creation flow available from within Workflows:
Configuration:
Usage:
With

connector-id.Without

connector-id.