Created
May 27, 2018 15:31
-
-
Save mclavel/25e1ac423bca93297a19b715c08e8a80 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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