This commit is contained in:
Steve McGhee 2020-05-21 21:03:12 +00:00
parent 5645c81a0b
commit d9210ca386
2 changed files with 29 additions and 1 deletions

View file

@ -1,8 +1,24 @@
# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# save terraform state locally for now
terraform { terraform {
backend "local" { backend "local" {
path = "terraform.tfstate" path = "terraform.tfstate"
} }
} }
provider "google" { provider "google" {
# pin provider to 2.x # pin provider to 2.x
project = var.project project = var.project
@ -14,6 +30,7 @@ provider "random" {
version = "~> 2.0" version = "~> 2.0"
} }
# enable all the Google Cloud Platform APIs we need for this project
resource "google_project_service" "iam" { resource "google_project_service" "iam" {
project = var.project project = var.project
@ -207,7 +224,7 @@ resource "null_resource" "deploy_services" {
} }
# There is no reliable way to do deployment verification with kubernetes # There is no reliable way to do deployment verification with kubernetes
# For the purposes of Sandbox, we can mitigate by waiting a few sec to ensure kubectl apply completes # we can mitigate by waiting a few sec to ensure kubectl apply completes
resource "null_resource" "delay" { resource "null_resource" "delay" {
provisioner "local-exec" { provisioner "local-exec" {
command = "sleep 5" command = "sleep 5"
@ -217,3 +234,7 @@ resource "null_resource" "delay" {
} }
} }
# TODO:
# use gke_deploy instead of kubectl apply
# add service monitoring
# add a dashboard

7
terraform/README.md Normal file
View file

@ -0,0 +1,7 @@
To install the microservices-demo on GKE using terraform do the following:
1. create a project with an active billing account, or use an existing one.
1. `export PROJECT='my-great-project' # substitute with your project name`
1. `terraform init`
1. `terraform plan -var project=$PROJECT`
1. `terraform apply -auto-approve -var project=$PROJECT`