Skip to content

Instantly share code, notes, and snippets.

@mclavel
Created May 27, 2018 15:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mclavel/25e1ac423bca93297a19b715c08e8a80 to your computer and use it in GitHub Desktop.
Save mclavel/25e1ac423bca93297a19b715c08e8a80 to your computer and use it in GitHub Desktop.
resource "google_container_cluster" "cluster" {
name = "example"
zone = "us-central1-a"
initial_node_count = 1
}
resource "google_container_node_pool" "pool" {
name = "pool"
cluster = "${google_container_cluster.cluster.name}"
zone = "us-central1-a"
node_count = "1"
node_config {
machine_type = "g1-small"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment