Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update for TF v0.12.6 #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/05-terraform.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ The second problem is dealt by source control tools like `git`, while the first

[Download](https://www.terraform.io/downloads.html) and install Terraform on your system.

Make sure Terraform version is => 0.11.0:
Make sure Terraform version is => 0.12.6:

```bash
$ terraform -v
Expand Down Expand Up @@ -95,7 +95,7 @@ Create another file inside `terraform` folder and call it `providers.tf`. Put pr

```
provider "google" {
version = "~> 1.4.0"
version = "~> 2.5"
project = "infrastructure-as-code"
region = "europe-west1"
}
Expand Down Expand Up @@ -202,7 +202,7 @@ resource "google_compute_instance" "raddit" {
}

resource "google_compute_project_metadata" "raddit" {
metadata {
metadata = {
ssh-keys = "raddit-user:${file("~/.ssh/raddit-user.pub")}" // path to ssh key file
}
}
Expand Down