From the course: Developing Infrastructure as Code with Terraform

Unlock this course with a free trial

Join today to access over 24,900 courses taught by industry experts.

Demo: Working with GCP

Demo: Working with GCP

- Okay, so let's take a look at how we would deploy a solution to Google Cloud platform. So if you watch the AWS demo, this one will be very similar. We're going to deploy a Kubernetes cluster. It's called GKE in Google. And let's look at how we're going to configure our providers. So here, we're specifying the Google provider, and there's actually two versions of the Google provider. So they provide a beta and a standard. So the Google beta is a separate provider and it has newer features that haven't been fully released yet, and they just maintain the two. So they have a little bit of a different approach than the way some of the other providers handle that. And you can see in these notes here that there are some bugs in some version of these providers that make the solution not work. So we have these very complicated, version constraint syntax, here. So we want something that is higher than 5.4.0., but lower than six, and specifically not version 5.4.4.0 So sometimes you get into…

Contents