google_compute_global_address
Creates a static IP address resource global to a Google Compute Engine project. For more information see the official documentation and API.
Example Usage
resource "google_compute_global_address" "default" {
name = "test-address"
}
Argument Reference
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.
project
- (Optional) The project in which the resource belongs. If it is not provided, the provider project is used.
Attributes Reference
In addition to the arguments listed above, the following computed attributes are exported:
-
address
- The assigned address. -
self_link
- The URI of the created resource.
See the source of this document at Terraform.io