Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
update generated docs action committed Oct 3, 2023
1 parent e84dc91 commit e005fe1
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions docs/resources/project_budget.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "env0_project_budget Resource - terraform-provider-env0"
subcategory: ""
description: |-
---

# env0_project_budget (Resource)



## Example Usage

```terraform
resource "env0_project" "project" {
name = "example"
}
resource "env0_project_budget" "project_budget" {
project_id = env0_project.project.id
amount = 1000
timeframe = "MONTHLY"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- `amount` (Number) amount of the project budget
- `project_id` (String) id of the project
- `timeframe` (String) budget timeframe (valid values: WEEKLY, MONTHLY, QUARTERLY, YEARLY)

### Optional

- `thresholds` (List of Number) list of notification thresholds

### Read-Only

- `id` (String) The ID of this resource.

0 comments on commit e005fe1

Please sign in to comment.