github.com/bengesoff/terraform@v0.3.1-0.20141018223233-b25a53629922/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  ---
     6  
     7  # google\_compute\_address
     8  
     9  Creates a static IP address resource for Google Compute Engine.
    10  
    11  ## Example Usage
    12  
    13  ```
    14  resource "google_compute_address" "default" {
    15  	name = "test-address"
    16  }
    17  ```
    18  
    19  ## Argument Reference
    20  
    21  The following arguments are supported:
    22  
    23  * `name` - (Required) A unique name for the resource, required by GCE.
    24      Changing this forces a new resource to be created.
    25  
    26  ## Attributes Reference
    27  
    28  The following attributes are exported:
    29  
    30  * `name` - The name of the resource.
    31  * `address` - The IP address that was allocated.