Google Dialogflow CX Intent

This page shows how to write Terraform for Dialogflow CX Intent and write them securely.

google_dialogflow_cx_intent (Terraform)

The Intent in Dialogflow CX can be configured in Terraform with the resource name google_dialogflow_cx_intent. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Review your Terraform file for Google best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

The following arguments are supported:

  • display_name - (Required) The human-readable name of the intent, unique within the agent.

  • training_phrases - (Optional) The collection of training phrases the agent is trained on to identify the intent. Structure is documented below.

  • parameters - (Optional) The collection of parameters associated with the intent. Structure is documented below.

  • priority - (Optional) The priority of this intent. Higher numbers represent higher priorities. If the supplied value is unspecified or 0, the service translates the value to 500,000, which corresponds to the Normal priority in the console. If the supplied value is negative, the intent is ignored in runtime detect intent requests.

  • is_fallback - (Optional) Indicates whether this is a fallback intent. Currently only default fallback intent is allowed in the agent, which is added upon agent creation. Adding training phrases to fallback intent is useful in the case of requests that are mistakenly matched, since training phrases assigned to fallback intents act as negative examples that triggers no-match event.

  • labels - (Optional) The key/value metadata to label an intent. Labels can contain lowercase letters, digits and the symbols '-' and '_'. International characters are allowed, including letters from unicase alphabets. Keys must start with a letter. Keys and values can be no longer than 63 characters and no more than 128 bytes. Prefix "sys-" is reserved for Dialogflow defined labels. Currently allowed Dialogflow defined labels include: sys-head sys-contextual The above labels do not require value. "sys-head" means the intent is a head intent. "sys.contextual" means the intent is a contextual intent. An object containing a list of "key": value pairs. Example: [ "name": "wrench", "mass": "1.3kg", "count": "3" ].

  • description - (Optional) Human readable description for better understanding an intent like its scope, content, result etc. Maximum character limit: 140 characters.

  • parent - (Optional) The agent to create an intent for. Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>.

  • language_code - (Optional) The language of the following fields in intent: Intent.training_phrases.parts.text If not specified, the agent's default language is used. Many languages are supported. Note: languages must be enabled in the agent before they can be used.

The training_phrases block supports:

  • id - The unique identifier of the training phrase.

  • parts - (Required) The ordered list of training phrase parts. The parts are concatenated in order to form the training phrase. Note: The API does not automatically annotate training phrases like the Dialogflow Console does. Note: Do not forget to include whitespace at part boundaries, so the training phrase is well formatted when the parts are concatenated. If the training phrase does not need to be annotated with parameters, you just need a single part with only the Part.text field set. If you want to annotate the training phrase, you must create multiple parts, where the fields of each part are populated in one of two ways: Part.text is set to a part of the phrase that has no parameters. Part.text is set to a part of the phrase that you want to annotate, and the parameterId field is set. Structure is documented below.

  • repeat_count - (Optional) Indicates how many times this example was added to the intent.

The parts block supports:

  • text - (Required) The text for this part.

  • parameter_id - (Optional) The parameter used to annotate this part of the training phrase. This field is required for annotated parts of the training phrase.

The parameters block supports:

  • id - (Required) The unique identifier of the parameter. This field is used by training phrases to annotate their parts.

  • entity_type - (Required) The entity type of the parameter. Format: projects/-/locations/-/agents/-/entityTypes/<System Entity Type ID> for system entity types (for example, projects/-/locations/-/agents/-/entityTypes/sys.date), or projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/entityTypes/<Entity Type ID> for developer entity types.

  • is_list - (Optional) Indicates whether the parameter represents a list of values.

  • redact - (Optional) Indicates whether the parameter content should be redacted in log. If redaction is enabled, the parameter content will be replaced by parameter name during logging. Note: the parameter content is subject to redaction if either parameter level redaction or entity type level redaction is enabled.

In addition to the arguments listed above, the following computed attributes are exported:

  • id - an identifier for the resource with format [[parent]]/intents/[[name]]

  • name - The unique identifier of the intent.
    Format: projects/<Project ID>/locations/<Location ID>/agents/<Agent ID>/intents/<Intent ID>.

Explanation in Terraform Registry

An intent represents a user's intent to interact with a conversational agent. To get more information about Intent, see:

Frequently asked questions

What is Google Dialogflow CX Intent?

Google Dialogflow CX Intent is a resource for Dialogflow CX of Google Cloud Platform. Settings can be wrote in Terraform.

security-icon

Automate config file reviews on your commits

Fix issues in your infrastructure as code with auto-generated patches.