Skip to content

Commit

Permalink
Give addresses beta support, add internal addresses (hashicorp#594)
Browse files Browse the repository at this point in the history
  • Loading branch information
negz authored and rosbo committed Nov 7, 2017
1 parent a2c908a commit 2dea092
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions docs/r/compute_address.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,11 @@ description: |-
# google\_compute\_address

Creates a static IP address resource for Google Compute Engine. For more information see
[the official documentation](https://cloud.google.com/compute/docs/instances-and-network) and
[API](https://cloud.google.com/compute/docs/reference/latest/addresses).
the official documentation for
[external](https://cloud.google.com/compute/docs/instances-and-network) and
[internal](https://cloud.google.com/compute/docs/ip-addresses/reserve-static-internal-ip-address)
static IP reservations, as well as the
[API](https://cloud.google.com/compute/docs/reference/beta/addresses/insert).


## Example Usage
Expand All @@ -36,6 +39,18 @@ The following arguments are supported:
* `region` - (Optional) The Region in which the created address should reside.
If it is not provided, the provider region is used.

* `address_type` - (Optional) The Address Type that should be configured.
Specify INTERNAL to reserve an internal static IP address EXTERNAL to
specify an external static IP address. Defaults to EXTERNAL if omitted.

* `subnetwork` - (Optional) The self link URI of the subnetwork in which to
create the address. A subnetwork may only be specified for INTERNAL
address types.

* `address` - (Optional) The IP address to reserve. An address may only be
specified for INTERNAL address types. The IP address must be inside the
specified subnetwork, if any.

## Attributes Reference

In addition to the arguments listed above, the following computed attributes are
Expand Down

0 comments on commit 2dea092

Please sign in to comment.