Skip to content

Commit

Permalink
Merge pull request #13 from terraform-google-modules/ludo-readme-fix
Browse files Browse the repository at this point in the history
Fix README example to work with 0.12
  • Loading branch information
ludoo authored Sep 13, 2019
2 parents 0e9342d + 0b2e6a6 commit 2db8e39
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ and this project adheres to

## [Unreleased]

## [2.0.1] - 2019-09-13

### Changed

- Fix example in top-level README to work with terraform-0.12.x [#13]

## [2.0.0] - 2019-08-14

### Changed
Expand Down
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ Basic usage of this module is as follows:

```hcl
module "service_accounts" {
source = "terraform-google-modules/service-accounts/google"
version = "~> 0.1"
project_id = "<PROJECT ID>"
prefix = ""
names = ["test-first", "test-second"]
source = "terraform-google-modules/service-accounts/google"
version = "~> 2.0"
project_id = "<PROJECT ID>"
prefix = "test-sa"
names = ["first", "second"]
project_roles = [
"project-foo=>roles/viewer",
"project-spam=>roles/storage.objectViewer",
Expand Down

0 comments on commit 2db8e39

Please sign in to comment.