Skip to content

Commit

Permalink
Compute V2: Read flavor's ephemeral option (gophercloud#855)
Browse files Browse the repository at this point in the history
  • Loading branch information
kayrus authored and ozerovandrei committed Sep 6, 2019
1 parent 93e5090 commit 64ae2a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openstack/resource_openstack_compute_flavor_v2.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func resourceComputeFlavorV2Read(d *schema.ResourceData, meta interface{}) error
d.Set("swap", fl.Swap)
d.Set("rx_tx_factor", fl.RxTxFactor)
d.Set("is_public", fl.IsPublic)
// d.Set("ephemeral", fl.Ephemeral) TODO: Implement this in gophercloud
d.Set("ephemeral", fl.Ephemeral)
d.Set("region", GetRegion(d, config))

es, err := flavors.ListExtraSpecs(computeClient, d.Id()).Extract()
Expand Down

0 comments on commit 64ae2a4

Please sign in to comment.