Skip to content

Commit df1d148

Browse files
CSOAR-3990: Update markdown
1 parent 6f8354a commit df1d148

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

website/docs/r/csoar_playbook.html.markdown

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ resource "sumologic_csoar_playbook" "complex_playbook" {
2727
type = "General"
2828
is_enabled = true
2929
30-
nodes = [
30+
nodes = jsonencode([
3131
{
3232
id = "start-node-1"
3333
type = "devs.Start"
@@ -76,9 +76,9 @@ resource "sumologic_csoar_playbook" "complex_playbook" {
7676
stepType = "end"
7777
elementType = "END"
7878
}
79-
]
79+
])
8080
81-
links = [
81+
links = jsonencode([
8282
{
8383
id = "link-1"
8484
type = "link"
@@ -103,7 +103,7 @@ resource "sumologic_csoar_playbook" "complex_playbook" {
103103
port = "in"
104104
}
105105
}
106-
]
106+
])
107107
}
108108
```
109109

0 commit comments

Comments
 (0)