Skip to content

Commit

Permalink
Update schema_deployment_process.go
Browse files Browse the repository at this point in the history
Fixes #127
  • Loading branch information
jbristowe committed Feb 2, 2021
1 parent 76acdc6 commit 966da83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octopusdeploy/schema_deployment_process.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func expandDeploymentProcess(d *schema.ResourceData) *octopusdeploy.DeploymentPr
}

if v, ok := d.GetOk("version"); ok {
deploymentProcess.Version = v.(int32)
deploymentProcess.Version = int32(v.(int))
}

if v, ok := d.GetOk("step"); ok {
Expand Down

0 comments on commit 966da83

Please sign in to comment.