From a63f71c0b044f1f045cab0bfb49bdb3e45b4f383 Mon Sep 17 00:00:00 2001 From: neil-yechenwei Date: Fri, 19 Apr 2024 12:50:00 +0800 Subject: [PATCH] Docs: update the possible values for action.type of azurerm_security_center_automation --- website/docs/r/security_center_automation.html.markdown | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/docs/r/security_center_automation.html.markdown b/website/docs/r/security_center_automation.html.markdown index aa1d28932596..9e47effa4393 100644 --- a/website/docs/r/security_center_automation.html.markdown +++ b/website/docs/r/security_center_automation.html.markdown @@ -52,7 +52,7 @@ resource "azurerm_security_center_automation" "example" { resource_group_name = azurerm_resource_group.example.name action { - type = "EventHub" + type = "eventhub" resource_id = azurerm_eventhub.example.id connection_string = azurerm_eventhub_authorization_rule.example.primary_connection_string } @@ -101,13 +101,13 @@ The following arguments are supported: A `action` block defines where the data will be exported and sent to, it supports the following: -* `type` - (Required) Type of Azure resource to send data to. Must be set to one of: `LogicApp`, `EventHub` or `LogAnalytics`. +* `type` - (Required) Type of Azure resource to send data to. Must be set to one of: `logicapp`, `eventhub` or `loganalytics`. * `resource_id` - (Required) The resource id of the target Logic App, Event Hub namespace or Log Analytics workspace. -* `connection_string` - (Optional) (Optional, but required when `type` is `EventHub`) A connection string to send data to the target Event Hub namespace, this should include a key with send permissions. +* `connection_string` - (Optional) (Optional, but required when `type` is `eventhub`) A connection string to send data to the target Event Hub namespace, this should include a key with send permissions. -* `trigger_url` - (Optional) (Optional, but required when `type` is `LogicApp`) The callback URL to trigger the Logic App that will receive and process data sent by this automation. This can be found in the Azure Portal under "See trigger history" +* `trigger_url` - (Optional) (Optional, but required when `type` is `logicapp`) The callback URL to trigger the Logic App that will receive and process data sent by this automation. This can be found in the Azure Portal under "See trigger history" ---