Skip to content

Commit

Permalink
pr-comments: cost estimation.
Browse files Browse the repository at this point in the history
  • Loading branch information
liranfarage89 committed Nov 14, 2021
1 parent 6abf47e commit f4bf0e1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/data-sources/project_policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ description: |-

- **disable_destroy_environments** (Boolean) Disallow destroying environment in the project
- **id** (String) id of the policy
- **include_cost_estimation** (Boolean) include cost estimation
- **include_cost_estimation** (Boolean) Enable cost estimation for the project
- **number_of_environments** (Number) number of environments per project
- **number_of_environments_total** (Number) number of environments total
- **requires_approval_default** (Boolean) requires approval
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/project_policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ description: |-
### Optional

- **disable_destroy_environments** (Boolean) Disallow destroying environment in the project
- **include_cost_estimation** (Boolean) include cost estimation
- **include_cost_estimation** (Boolean) Enable cost estimation for the project
- **number_of_environments** (Number) number of environments per project, 0 indicates no limit
- **number_of_environments_total** (Number) number of environments total, 0 indicates no limit
- **requires_approval_default** (Boolean) requires approval
Expand Down
2 changes: 1 addition & 1 deletion env0/data_project_policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func dataPolicy() *schema.Resource {
},
"include_cost_estimation": {
Type: schema.TypeBool,
Description: "include cost estimation",
Description: "Enable cost estimation for the project",
Computed: true,
},
"skip_apply_when_plan_is_empty": {
Expand Down
2 changes: 1 addition & 1 deletion env0/resource_project_policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ func resourcePolicy() *schema.Resource {
},
"include_cost_estimation": {
Type: schema.TypeBool,
Description: "include cost estimation",
Description: "Enable cost estimation for the project",
Optional: true,
},
"skip_apply_when_plan_is_empty": {
Expand Down

0 comments on commit f4bf0e1

Please sign in to comment.