forked from gruntwork-io/terraform-google-gke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
293 lines (232 loc) · 10.1 KB
/
main.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
# ---------------------------------------------------------------------------------------------------------------------
# DEPLOY A GKE PRIVATE CLUSTER IN GOOGLE CLOUD PLATFORM
# This is an example of how to use the gke-cluster module to deploy a private Kubernetes cluster in GCP.
# Load Balancer in front of it.
# ---------------------------------------------------------------------------------------------------------------------
terraform {
# The modules used in this example have been updated with 0.12 syntax, additionally we depend on a bug fixed in
# version 0.12.7.
required_version = ">= 0.12.7"
}
# ---------------------------------------------------------------------------------------------------------------------
# PREPARE PROVIDERS
# ---------------------------------------------------------------------------------------------------------------------
provider "google" {
version = "~> 3.1.0"
project = var.project
region = var.region
scopes = [
# Default scopes
"https://www.googleapis.com/auth/compute",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/ndev.clouddns.readwrite",
"https://www.googleapis.com/auth/devstorage.full_control",
# Required for google_client_openid_userinfo
"https://www.googleapis.com/auth/userinfo.email",
]
}
provider "google-beta" {
version = "~> 3.1.0"
project = var.project
region = var.region
scopes = [
# Default scopes
"https://www.googleapis.com/auth/compute",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/ndev.clouddns.readwrite",
"https://www.googleapis.com/auth/devstorage.full_control",
# Required for google_client_openid_userinfo
"https://www.googleapis.com/auth/userinfo.email",
]
}
# We use this data provider to expose an access token for communicating with the GKE cluster.
data "google_client_config" "client" {}
# Use this datasource to access the Terraform account's email for Kubernetes permissions.
data "google_client_openid_userinfo" "terraform_user" {}
provider "kubernetes" {
version = "~> 1.7.0"
load_config_file = false
host = data.template_file.gke_host_endpoint.rendered
token = data.template_file.access_token.rendered
cluster_ca_certificate = data.template_file.cluster_ca_certificate.rendered
}
provider "helm" {
# Use provider with Helm 3.x support
version = "~> 1.1.1"
kubernetes {
host = data.template_file.gke_host_endpoint.rendered
token = data.template_file.access_token.rendered
cluster_ca_certificate = data.template_file.cluster_ca_certificate.rendered
load_config_file = false
}
}
# ---------------------------------------------------------------------------------------------------------------------
# DEPLOY A PRIVATE CLUSTER IN GOOGLE CLOUD PLATFORM
# ---------------------------------------------------------------------------------------------------------------------
module "gke_cluster" {
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you
# to a specific version of the modules, such as the following example:
# source = "github.com/gruntwork-io/terraform-google-gke.git//modules/gke-cluster?ref=v0.2.0"
source = "./modules/gke-cluster"
name = var.cluster_name
project = var.project
location = var.location
network = module.vpc_network.network
# Deploy the cluster in the 'private' subnetwork, outbound internet access will be provided by NAT
# See the network access tier table for full details:
# https://github.com/gruntwork-io/terraform-google-network/tree/master/modules/vpc-network#access-tier
subnetwork = module.vpc_network.private_subnetwork
# When creating a private cluster, the 'master_ipv4_cidr_block' has to be defined and the size must be /28
master_ipv4_cidr_block = var.master_ipv4_cidr_block
# This setting will make the cluster private
enable_private_nodes = "true"
# To make testing easier, we keep the public endpoint available. In production, we highly recommend restricting access to only within the network boundary, requiring your users to use a bastion host or VPN.
disable_public_endpoint = "false"
# With a private cluster, it is highly recommended to restrict access to the cluster master
# However, for testing purposes we will allow all inbound traffic.
master_authorized_networks_config = [
{
cidr_blocks = [
{
cidr_block = "0.0.0.0/0"
display_name = "all-for-testing"
},
]
},
]
cluster_secondary_range_name = module.vpc_network.private_subnetwork_secondary_range_name
}
# ---------------------------------------------------------------------------------------------------------------------
# CREATE A NODE POOL
# ---------------------------------------------------------------------------------------------------------------------
resource "google_container_node_pool" "node_pool" {
provider = google-beta
name = "main-pool"
project = var.project
location = var.location
cluster = module.gke_cluster.name
initial_node_count = "1"
autoscaling {
min_node_count = "1"
max_node_count = "5"
}
management {
auto_repair = "true"
auto_upgrade = "true"
}
node_config {
image_type = "COS"
machine_type = "n1-standard-1"
labels = {
all-pools-example = "true"
}
# Add a private tag to the instances. See the network access tier table for full details:
# https://github.com/gruntwork-io/terraform-google-network/tree/master/modules/vpc-network#access-tier
tags = [
module.vpc_network.private,
"helm-example",
]
disk_size_gb = "30"
disk_type = "pd-standard"
preemptible = false
service_account = module.gke_service_account.email
oauth_scopes = [
"https://www.googleapis.com/auth/cloud-platform",
]
}
lifecycle {
ignore_changes = [initial_node_count]
}
timeouts {
create = "30m"
update = "30m"
delete = "30m"
}
}
# ---------------------------------------------------------------------------------------------------------------------
# CREATE A CUSTOM SERVICE ACCOUNT TO USE WITH THE GKE CLUSTER
# ---------------------------------------------------------------------------------------------------------------------
module "gke_service_account" {
# When using these modules in your own templates, you will need to use a Git URL with a ref attribute that pins you
# to a specific version of the modules, such as the following example:
# source = "github.com/gruntwork-io/terraform-google-gke.git//modules/gke-service-account?ref=v0.2.0"
source = "./modules/gke-service-account"
name = var.cluster_service_account_name
project = var.project
description = var.cluster_service_account_description
}
# ---------------------------------------------------------------------------------------------------------------------
# CREATE A NETWORK TO DEPLOY THE CLUSTER TO
# ---------------------------------------------------------------------------------------------------------------------
resource "random_string" "suffix" {
length = 4
special = false
upper = false
}
module "vpc_network" {
source = "github.com/gruntwork-io/terraform-google-network.git//modules/vpc-network?ref=v0.4.0"
name_prefix = "${var.cluster_name}-network-${random_string.suffix.result}"
project = var.project
region = var.region
cidr_block = var.vpc_cidr_block
secondary_cidr_block = var.vpc_secondary_cidr_block
}
# ---------------------------------------------------------------------------------------------------------------------
# CONFIGURE KUBECTL AND RBAC ROLE PERMISSIONS
# ---------------------------------------------------------------------------------------------------------------------
# configure kubectl with the credentials of the GKE cluster
resource "null_resource" "configure_kubectl" {
provisioner "local-exec" {
command = "gcloud beta container clusters get-credentials ${module.gke_cluster.name} --region ${var.region} --project ${var.project}"
# Use environment variables to allow custom kubectl config paths
environment = {
KUBECONFIG = var.kubectl_config_path != "" ? var.kubectl_config_path : ""
}
}
depends_on = [google_container_node_pool.node_pool]
}
resource "kubernetes_cluster_role_binding" "user" {
metadata {
name = "admin-user"
}
role_ref {
kind = "ClusterRole"
name = "cluster-admin"
api_group = "rbac.authorization.k8s.io"
}
subject {
kind = "User"
name = data.google_client_openid_userinfo.terraform_user.email
api_group = "rbac.authorization.k8s.io"
}
subject {
kind = "Group"
name = "system:masters"
api_group = "rbac.authorization.k8s.io"
}
}
# ---------------------------------------------------------------------------------------------------------------------
# DEPLOY A SAMPLE CHART
# A chart repository is a location where packaged charts can be stored and shared. Define Bitnami Helm repository location,
# so Helm can install the nginx chart.
# ---------------------------------------------------------------------------------------------------------------------
resource "helm_release" "nginx" {
depends_on = [google_container_node_pool.node_pool]
repository = "https://charts.bitnami.com/bitnami"
name = "nginx"
chart = "nginx"
}
# ---------------------------------------------------------------------------------------------------------------------
# WORKAROUNDS
# ---------------------------------------------------------------------------------------------------------------------
# This is a workaround for the Kubernetes and Helm providers as Terraform doesn't currently support passing in module
# outputs to providers directly.
data "template_file" "gke_host_endpoint" {
template = module.gke_cluster.endpoint
}
data "template_file" "access_token" {
template = data.google_client_config.client.access_token
}
data "template_file" "cluster_ca_certificate" {
template = module.gke_cluster.cluster_ca_certificate
}