We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6f8354a commit df1d148Copy full SHA for df1d148
website/docs/r/csoar_playbook.html.markdown
@@ -27,7 +27,7 @@ resource "sumologic_csoar_playbook" "complex_playbook" {
27
type = "General"
28
is_enabled = true
29
30
- nodes = [
+ nodes = jsonencode([
31
{
32
id = "start-node-1"
33
type = "devs.Start"
@@ -76,9 +76,9 @@ resource "sumologic_csoar_playbook" "complex_playbook" {
76
stepType = "end"
77
elementType = "END"
78
}
79
- ]
+ ])
80
81
- links = [
+ links = jsonencode([
82
83
id = "link-1"
84
type = "link"
@@ -103,7 +103,7 @@ resource "sumologic_csoar_playbook" "complex_playbook" {
103
port = "in"
104
105
106
107
108
```
109
0 commit comments