Skip to content

Commit

Permalink
Merge pull request #14543 from hashicorp/b-opc-ip-addr-res
Browse files Browse the repository at this point in the history
provider/opc: Correctly export `ip_address` in IP Addr Reservation
  • Loading branch information
grubernaut authored May 16, 2017
2 parents 24aa40a + bc1a6b0 commit e4a50f2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions builtin/providers/opc/resource_ip_address_reservation.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ func resourceOPCIPAddressReservationRead(d *schema.ResourceData, meta interface{
d.Set("name", result.Name)
d.Set("description", result.Description)
d.Set("ip_address_pool", result.IPAddressPool)
d.Set("ip_address", result.IPAddress)
d.Set("uri", result.Uri)

if err := setStringList(d, "tags", result.Tags); err != nil {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ func TestAccOPCIPAddressReservation_Basic(t *testing.T) {
Check: resource.ComposeTestCheckFunc(
testAccOPCCheckIPAddressReservationExists,
resource.TestCheckResourceAttr(resName, "name", fmt.Sprintf("testing-ip-address-reservation-%d", rInt)),
resource.TestCheckResourceAttrSet(resName, "ip_address"),
),
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The following arguments are supported:

* `name` - (Required) The name of the ip address reservation.

* `ip_address_pool` - (Required) The IP address pool from which you want to reserve an IP address.
* `ip_address_pool` - (Required) The IP address pool from which you want to reserve an IP address. Must be either `public-ippool` or `cloud-ippool`.

* `description` - (Optional) A description of the ip address reservation.

Expand Down

0 comments on commit e4a50f2

Please sign in to comment.