Skip to content

Commit 9d38bc2

Browse files
authored
Merge pull request #100 from SumoLogic/Gourav2906-update-ingestbudgetdocumentation
Update ingest_budget_v2.html.markdown
2 parents 83928e7 + 802eed3 commit 9d38bc2

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

website/docs/r/ingest_budget_v2.html.markdown

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@ Provides a [Sumologic Ingest Budget v2][1].This API is in private beta and is no
1111
## Example Usage
1212
```hcl
1313
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
1822
}
1923
```
2024

@@ -28,13 +32,12 @@ The following arguments are supported:
2832
* `description` - (Optional) The description of the collector.
2933
* `timezone` - (Optional) The time zone to use for this collector. The value follows the [tzdata][2] naming convention. Defaults to `Etc/UTC`
3034
* `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`
3235
* `description` - (Optional) Description of the ingest budget.
3336
* `action` - (Optional) Action to take when ingest budget's capacity is reached. All actions are audited. Supported values are `stopCollecting` and `keepCollecting`.
3437

3538
The following attributes are exported:
3639

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.
3841

3942
## Import
4043
Ingest budgets can be imported using the name, e.g.:

0 commit comments

Comments
 (0)