Skip to content

Conversation

@modular-magician
Copy link
Collaborator

Description
Add support for new_recognition_result_notification_config in google_dialogflow_conversation_profile

dialogflow:  added `new_recognition_result_notification_config` field to `google_dialogflow_conversation_profile ` resource

New Configuration :

resource "google_dialogflow_conversation_profile" "assist_profile" {
  project        = "my-project-id"
  display_name   = "Agent Assist Profile"
  location       = "global"

  automated_agent_config {
    agent = "projects/my-project-id/agent"
  }

  human_agent_assistant_config {
    notification_config {
      topic = google_pubsub_topic.recognition_results.id
    }
  }
  
  # Add support for this new block
  new_recognition_result_notification_config {
    topic = google_pubsub_topic.recognition_results.id
  }

  language_code = "en-US"

  depends_on = [google_pubsub_topic_iam_member.dialogflow_pubsub_publisher]
}

References
PR to solve issue: hashicorp/terraform-provider-google#24131

Derived from GoogleCloudPlatform/magic-modules#15129

…_config in google_dialogflow_conversation_profile (#15129)

[upstream:d13be459554d145ef6829d47867ba5628999b445]

Signed-off-by: Modular Magician <magic-modules@google.com>
@modular-magician modular-magician merged commit eae911d into terraform-google-modules:master Sep 24, 2025
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant