github.com/chalford/terraform@v0.3.7-0.20150113080010-a78c69a8c81f/website/source/docs/providers/google/r/compute_address.html.markdown (about) 1 --- 2 layout: "google" 3 page_title: "Google: google_compute_address" 4 sidebar_current: "docs-google-resource-address" 5 description: |- 6 Creates a static IP address resource for Google Compute Engine. 7 --- 8 9 # google\_compute\_address 10 11 Creates a static IP address resource for Google Compute Engine. 12 13 ## Example Usage 14 15 ``` 16 resource "google_compute_address" "default" { 17 name = "test-address" 18 } 19 ``` 20 21 ## Argument Reference 22 23 The following arguments are supported: 24 25 * `name` - (Required) A unique name for the resource, required by GCE. 26 Changing this forces a new resource to be created. 27 28 ## Attributes Reference 29 30 The following attributes are exported: 31 32 * `name` - The name of the resource. 33 * `address` - The IP address that was allocated.