mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
Making things consistent throughout the provider
This commit is contained in:
parent
d4a343492f
commit
72fa547557
@ -163,12 +163,12 @@ func resourceCloudStackPortForwardRead(d *schema.ResourceData, meta interface{})
|
|||||||
|
|
||||||
privPort, err := strconv.Atoi(r.Privateport)
|
privPort, err := strconv.Atoi(r.Privateport)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Error converting private_port: %s", err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
pubPort, err := strconv.Atoi(r.Publicport)
|
pubPort, err := strconv.Atoi(r.Publicport)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return fmt.Errorf("Error converting public_port: %s", err)
|
return err
|
||||||
}
|
}
|
||||||
|
|
||||||
// Update the values
|
// Update the values
|
||||||
|
Loading…
Reference in New Issue
Block a user