github.com/turtlemonvh/terraform@v0.6.9-0.20151204001754-8e40b6b855e8/website/source/docs/providers/google/r/compute_global_address.html.markdown (about) 1 --- 2 layout: "google" 3 page_title: "Google: google_compute_global_address" 4 sidebar_current: "docs-google-compute-global-address" 5 description: |- 6 Creates a static global IP address resource for a Google Compute Engine project. 7 --- 8 9 # google\_compute\_global\_address 10 11 Creates a static IP address resource global to a Google Compute Engine project. For more information see 12 [the official documentation](https://cloud.google.com/compute/docs/instances-and-network) and 13 [API](https://cloud.google.com/compute/docs/reference/latest/globalAddresses). 14 15 16 ## Example Usage 17 18 ``` 19 resource "google_compute_global_address" "default" { 20 name = "test-address" 21 } 22 ``` 23 24 ## Argument Reference 25 26 The following arguments are supported: 27 28 * `name` - (Required) A unique name for the resource, required by GCE. 29 Changing this forces a new resource to be created. 30 31 ## Attributes Reference 32 33 The following attributes are exported: 34 35 * `name` - The name of the resource. 36 * `address` - The IP address that was allocated. 37 * `self_link` - The URI of the created resource.