Skip to content

Commit

Permalink
Docs: update the possible values for action.type of azurerm_security_…
Browse files Browse the repository at this point in the history
…center_automation (#25677)
  • Loading branch information
neil-yechenwei authored Apr 19, 2024
1 parent 55f7fdd commit ce4cc57
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions website/docs/r/security_center_automation.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down Expand Up @@ -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"

---

Expand Down

0 comments on commit ce4cc57

Please sign in to comment.