Skip to content

Commit

Permalink
Release generated GlobalAddress (hashicorp#1379)
Browse files Browse the repository at this point in the history
  • Loading branch information
modular-magician authored and rosbo committed Apr 27, 2018
1 parent 2784022 commit b8753a0
Showing 1 changed file with 62 additions and 15 deletions.
77 changes: 62 additions & 15 deletions docs/r/compute_global_address.html.markdown
Original file line number Diff line number Diff line change
@@ -1,17 +1,37 @@
<!--
----------------------------------------------------------------------------
*** AUTO GENERATED CODE *** AUTO GENERATED CODE ***
----------------------------------------------------------------------------
This file is automatically generated by Magic Modules and manual
changes will be clobbered when the file is regenerated.
Please read more about how to change this file in
.github/CONTRIBUTING.md.
----------------------------------------------------------------------------
-->

---
layout: "google"
page_title: "Google: google_compute_global_address"
sidebar_current: "docs-google-compute-global-address"
description: |-
Creates a static global IP address resource for a Google Compute Engine project.
Represents a Global Address resource.
---

# google\_compute\_global\_address

Creates a static IP address resource global to a Google Compute Engine project. 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/globalAddresses).
Represents a Global Address resource. Global addresses are used for
HTTP(S) load balancing.

To get more information about GlobalAddress, see:

* [API documentation](https://cloud.google.com/compute/docs/reference/latest/globalAddresses)
* How-to Guides
* [Reserving a Static External IP Address](https://cloud.google.com/compute/docs/ip-addresses/reserve-static-external-ip-address)

## Example Usage

Expand All @@ -25,29 +45,56 @@ resource "google_compute_global_address" "default" {

The following arguments are supported:

* `name` - (Required) A unique name for the resource, required by GCE.
Changing this forces a new resource to be created.
* `name` -
(Required)
Name of the resource. Provided by the client when the resource is
created. The name must be 1-63 characters long, and comply with
RFC1035. Specifically, the name must be 1-63 characters long and
match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])?` which means
the first character must be a lowercase letter, and all following
characters must be a dash, lowercase letter, or digit, except the last
character, which cannot be a dash.


- - -

* `project` - (Optional) The ID of the project in which the resource belongs. If it
is not provided, the provider project is used.
* `description` -
(Optional)
An optional description of this resource.
Provide this property when you create the resource.
* `ip_version` -
(Optional)
The IP Version that will be used by this address. Valid options are
IPV4 or IPV6. The default value is IPV4.
* `project` (Optional) The ID of the project in which the resource belongs.
If it is not provided, the provider project is used.

* `ip_version` - (Optional) The IP Version that will be used by this address. One of `"IPV4"` or `"IPV6"`.

## Attributes Reference

In addition to the arguments listed above, the following computed attributes are
exported:

* `address` - The assigned address.
In addition to the arguments listed above, the following computed attributes are exported:

* `address` -
The static external IP address represented by this resource.
* `creation_timestamp` -
Creation timestamp in RFC3339 text format.
* `self_link` - The URI of the created resource.


## Timeouts

This resource provides the following
[Timeouts](/docs/configuration/resources.html#timeouts) configuration options:

- `create` - Default is 4 minutes.
- `delete` - Default is 4 minutes.

## Import

Global addresses can be imported using the `name`, e.g.
GlobalAddress can be imported using any of these accepted formats:

```
$ terraform import google_compute_global_address.default global-appserver-ip
$ terraform import google_compute_global_address.default projects/{{project}}/global/addresses/{{name}}
$ terraform import google_compute_global_address.default {{project}}/{{name}}
$ terraform import google_compute_global_address.default {{name}}
```

0 comments on commit b8753a0

Please sign in to comment.