feat(discoveryengine): add action, BAP, and destination config support to google_discovery_engine_data_connector#1230
Merged
modular-magician merged 1 commit intoterraform-google-modules:masterfrom Feb 27, 2026
Conversation
…t to `google_discovery_engine_data_connector` (#16290) [upstream:bb1e5687ca776d06c3c3191450620f5523d5885e] Signed-off-by: Modular Magician <magic-modules@google.com>
5b5103b
into
terraform-google-modules:master
2 checks passed
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.
Adds the missing API surface for Gemini Enterprise / Agentspace data connectors to
google_discovery_engine_data_connector, enabling full configuration of action connectors, BAP settings, destination routing, and data source versioning.New fields
action_configblockConfigures action capabilities for connectors using the
ACTIONSconnector mode (e.g. Jira actions).action_params(map, write-only) — connection credentials and configuration (instance URI, client ID, client secret, auth type)is_action_configured(bool, computed) — whether the action connector is fully configuredcreate_bap_connection(bool, write-only) — whether to create a BAP connectionbap_configblockControls which actions are enabled for connectors using the
ACTIONSconnector mode.enabled_actions(list of strings) — actions to enable, e.g.create_issue,update_issue,change_issue_status,create_comment,update_comment,upload_attachmentsupported_connector_modes(list of strings) — connector modes for the BAP configuration, e.g.ACTIONSdestination_configsblockConfigures where data is served for the connector.
key(string) — destination config key, e.g.urldestinations— list of destination objects, each with ahost(string)data_source_version(integer)Specifies the version of the data source, e.g.
3for Jira v3.Example usage
Changes
mmv1/products/discoveryengine/DataConnector.yaml— addedactionConfig,bapConfig,destinationConfigs, anddataSourceVersionproperty definitionsmmv1/templates/terraform/examples/discoveryengine_dataconnector_jira_with_actions.tf.tmpl— new Jira example demonstrating all new fieldsmmv1/templates/terraform/state_migrations/discovery_engine_data_connector.go.tmpl— added new fields to v0 schema for state migration compatibilitymmv1/third_party/terraform/services/discoveryengine/resource_discovery_engine_data_connector_test.go— updated acceptance tests with all new fieldsDerived from GoogleCloudPlatform/magic-modules#16290