terraform-provider-google/website/docs/d/google_compute_node_types.html.markdown
The Magician 8077953aa7 Add compute node types and templates (#3446)
Signed-off-by: Modular Magician <magic-modules@google.com>
2019-04-22 15:32:58 -07:00

1.4 KiB

layout page_title sidebar_current description
google Google: google_compute_node_types docs-google-datasource-compute-node-types Provides list of available Google Compute Engine node types for sole-tenant nodes.

google_compute_node_types

Provides available node types for Compute Engine sole-tenant nodes in a zone for a given project. For more information, see the official documentation and API.

Example Usage

data "google_compute_node_types" "central1b" {
  zone = "us-central1-b"
}

resource "google_compute_node_template" "tmpl" {
  name      = "terraform-test-tmpl"
  region    = "us-central1"
  node_type = "${data.google_compute_node_types.types.names[0]}"
}

Argument Reference

The following arguments are supported:

  • zone (Optional) - The zone to list node types for. Should be in zone of intended node groups and region of referencing node template. If zone is not specified, the provider-level zone must be set and is used instead.

  • project (Optional) - ID of the project to list available node types for. Should match the project the nodes of this type will be deployed to. Defaults to the project that the provider is authenticated with.

Attributes Reference

The following attributes are exported:

  • names - A list of node types available in the given zone and project.