forked from hashicorp/learn-terraform-pipelines-k8s
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gke.tf
50 lines (40 loc) · 1.69 KB
/
gke.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
data "google_compute_zones" "available" {}
resource "google_container_cluster" "engineering" {
name = var.cluster_name
location = data.google_compute_zones.available.names.0
# We can't create a cluster with no node pool defined, but we want to only use
# separately managed node pools. So we create the smallest possible default
# node pool and immediately delete it.
remove_default_node_pool = true
initial_node_count = 1
ip_allocation_policy {}
}
resource "google_container_node_pool" "engineering_preemptible_nodes" {
name = "${var.cluster_name}-node-pool"
cluster = google_container_cluster.engineering.name
location = data.google_compute_zones.available.names.0
node_count = var.enable_consul_and_vault ? 5 : 3
node_config {
preemptible = true
machine_type = "n1-standard-1"
metadata = {
disable-legacy-endpoints = "true"
}
oauth_scopes = [
"https://www.googleapis.com/auth/logging.write",
"https://www.googleapis.com/auth/monitoring",
]
}
}
data "template_file" "kubeconfig" {
template = file("${path.module}/kubeconfig-template.yaml")
vars = {
cluster_name = google_container_cluster.engineering.name
user_name = google_container_cluster.engineering.master_auth[0].username
user_password = google_container_cluster.engineering.master_auth[0].password
endpoint = google_container_cluster.engineering.endpoint
cluster_ca = google_container_cluster.engineering.master_auth[0].cluster_ca_certificate
client_cert = google_container_cluster.engineering.master_auth[0].client_certificate
client_cert_key = google_container_cluster.engineering.master_auth[0].client_key
}
}