File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
examples/resources/elasticstack_kibana_action_connector Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change @@ -90,6 +90,21 @@ resource "elasticstack_kibana_action_connector" "genai-azure-connector" {
9090 apiKey = "<your-azure-api-key>"
9191 })
9292}
93+
94+ resource "elasticstack_kibana_action_connector" "webhook" {
95+ name = "webhook"
96+ connector_type_id = ".webhook"
97+ config = jsonencode({
98+ url = "<your-webhookUrl>"
99+ authType = "webhook-authentication-basic"
100+ hasAuth = true
101+ method = "post"
102+ })
103+ secrets = jsonencode({
104+ user = "<your-user>"
105+ password = "<your-password>"
106+ })
107+ }
93108```
94109
95110<!-- schema generated by tfplugindocs -->
Original file line number Diff line number Diff line change @@ -75,3 +75,18 @@ resource "elasticstack_kibana_action_connector" "genai-azure-connector" {
7575 apiKey = " <your-azure-api-key>"
7676 })
7777}
78+
79+ resource "elasticstack_kibana_action_connector" "webhook" {
80+ name = " webhook"
81+ connector_type_id = " .webhook"
82+ config = jsonencode ({
83+ url = " <your-webhookUrl>"
84+ authType = " webhook-authentication-basic"
85+ hasAuth = true
86+ method = " post"
87+ })
88+ secrets = jsonencode ({
89+ user = " <your-user>"
90+ password = " <your-password>"
91+ })
92+ }
You can’t perform that action at this time.
0 commit comments