Skip to content

Commit

Permalink
pr-comments: skip apply
Browse files Browse the repository at this point in the history
  • Loading branch information
liranfarage89 committed Nov 14, 2021
1 parent d094b4c commit d09e045
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 @@ -27,7 +27,7 @@ description: |-
- **number_of_environments** (Number) Max number of environment a single user can have in this project
- **number_of_environments_total** (Number) Max number of environments in this project
- **requires_approval_default** (Boolean) Requires approval default value when creating a new environment in the project
- **skip_apply_when_plan_is_empty** (Boolean) skip apply when plan is empty
- **skip_apply_when_plan_is_empty** (Boolean) Skip apply when plan has no changes
- **skip_redundant_deployments** (Boolean) skip redundant deployments
- **updated_by** (String) updated by

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 @@ -26,7 +26,7 @@ description: |-
- **number_of_environments** (Number) Max number of environment a single user can have in this project, 0 indicates no limit
- **number_of_environments_total** (Number) Max number of environments in this project, 0 indicates no limit
- **requires_approval_default** (Boolean) Requires approval default value when creating a new environment in the project
- **skip_apply_when_plan_is_empty** (Boolean) skip apply when plan is empty
- **skip_apply_when_plan_is_empty** (Boolean) Skip apply when plan has no changes
- **skip_redundant_deployments** (Boolean) skip redundant deployments

### Read-Only
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 @@ -45,7 +45,7 @@ func dataPolicy() *schema.Resource {
},
"skip_apply_when_plan_is_empty": {
Type: schema.TypeBool,
Description: "skip apply when plan is empty",
Description: "Skip apply when plan has no changes",
Computed: true,
},
"disable_destroy_environments": {
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 @@ -74,7 +74,7 @@ func resourcePolicy() *schema.Resource {
},
"skip_apply_when_plan_is_empty": {
Type: schema.TypeBool,
Description: "skip apply when plan is empty",
Description: "Skip apply when plan has no changes",
Optional: true,
},
"disable_destroy_environments": {
Expand Down

0 comments on commit d09e045

Please sign in to comment.