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 6e075c8 commit aeb48d6Copy full SHA for aeb48d6
website/docs/r/content.html.markdown
@@ -10,10 +10,12 @@ Provides a way to interact with Sumologic Content.
10
11
## Example Usage
12
```hcl
13
+data "sumologic_personal_folder" "personalFolder" {}
14
+
15
resource "sumologic_content" "test" {
-parent_id = "%s"
- config =
16
- {
+parent_id = "${data.sumologic_personal_folder.personalFolder.id}"
17
+config =
18
+ jsonencode({
19
"type": "SavedSearchWithScheduleSyncDefinition",
20
"name": "test-333",
21
"search": {
@@ -52,7 +54,7 @@ parent_id = "%s"
52
54
"parameters": []
53
55
},
56
"description": "Runs every hour with timerange of 15m and sends email notifications"
- }
57
+ })
58
}
59
```
60
0 commit comments