Skip to content

Commit

Permalink
pr-comments: skip redundant deployments
Browse files Browse the repository at this point in the history
  • Loading branch information
liranfarage89 committed Nov 14, 2021
1 parent d09e045 commit 8dbb135
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 @@ -28,7 +28,7 @@ description: |-
- **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 has no changes
- **skip_redundant_deployments** (Boolean) skip redundant deployments
- **skip_redundant_deployments** (Boolean) Automatically skip queued deployments when a newer deployment is triggered
- **updated_by** (String) updated by


2 changes: 1 addition & 1 deletion docs/resources/project_policy.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ description: |-
- **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 has no changes
- **skip_redundant_deployments** (Boolean) skip redundant deployments
- **skip_redundant_deployments** (Boolean) Automatically skip queued deployments when a newer deployment is triggered

### 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 @@ -55,7 +55,7 @@ func dataPolicy() *schema.Resource {
},
"skip_redundant_deployments": {
Type: schema.TypeBool,
Description: "skip redundant deployments",
Description: "Automatically skip queued deployments when a newer deployment is triggered",
Computed: true,
},
"updated_by": {
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 @@ -84,7 +84,7 @@ func resourcePolicy() *schema.Resource {
},
"skip_redundant_deployments": {
Type: schema.TypeBool,
Description: "skip redundant deployments",
Description: "Automatically skip queued deployments when a newer deployment is triggered",
Optional: true,
},
"updated_by": {
Expand Down

0 comments on commit 8dbb135

Please sign in to comment.