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.
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]
}
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.
The following attributes are exported:
names
- A list of node types available in the given zone and project.