You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/docs/r/ingest_budget_v2.html.markdown
+9-6Lines changed: 9 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,10 +11,14 @@ Provides a [Sumologic Ingest Budget v2][1].This API is in private beta and is no
11
11
## Example Usage
12
12
```hcl
13
13
resource "sumologic_ingest_budget_v2" "budget" {
14
-
name = "testBudget"
15
-
scope = "_sourceCategory=*prod*nginx*"
16
-
capacity_bytes = 30000000000
17
-
description = "For testing purposes"
14
+
name = "testBudget"
15
+
scope = "_sourceCategory=*prod*nginx*"
16
+
capacity_bytes = 30000000000
17
+
description = "For testing purposes"
18
+
timezone = "Etc/UTC"
19
+
action = "keepCollecting"
20
+
reset_time = "00:00"
21
+
audit_threshold = 85
18
22
}
19
23
```
20
24
@@ -28,13 +32,12 @@ The following arguments are supported:
28
32
*`description` - (Optional) The description of the collector.
29
33
*`timezone` - (Optional) The time zone to use for this collector. The value follows the [tzdata][2] naming convention. Defaults to `Etc/UTC`
30
34
*`reset_time` - (Optional) Reset time of the ingest budget in HH:MM format. Defaults to `00:00`
31
-
*`reset_time` - (Optional) Reset time of the ingest budget in HH:MM format. Defaults to `00:00`
32
35
*`description` - (Optional) Description of the ingest budget.
33
36
*`action` - (Optional) Action to take when ingest budget's capacity is reached. All actions are audited. Supported values are `stopCollecting` and `keepCollecting`.
34
37
35
38
The following attributes are exported:
36
39
37
-
*`id` - The internal ID of the ingest budget. This can be used to assign collectors to the ingest budget.
40
+
*`id` - The internal ID of the ingest budget.
38
41
39
42
## Import
40
43
Ingest budgets can be imported using the name, e.g.:
0 commit comments