Skip to content

Commit

Permalink
Changes:
Browse files Browse the repository at this point in the history
- update CHANGELOG.md for v2.0.0 release
- update README.md
  • Loading branch information
davidji99 committed Jun 13, 2019
1 parent 4ec5c7c commit 2403cb0
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 5 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
## 1.6.0 (Unreleased)
## 2.0.0 (Unreleased)

FEATURES:
* **Terraform 0.12** compatibility ([#85](https://github.com/terraform-providers/terraform-provider-mysql/pull/85))

IMPROVEMENTS:
* Documentation fix-ups ([#84](https://github.com/terraform-providers/terraform-provider-mysql/pull/84) & [#81](https://github.com/terraform-providers/terraform-provider-mysql/pull/81))

## 1.5.2 (May 29, 2019)

BUG FIXES:
Expand Down
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,19 @@ Terraform Provider
Requirements
------------

- [Terraform](https://www.terraform.io/downloads.html) 0.10.x
- [Go](https://golang.org/doc/install) 1.8 (to build the provider plugin)
- [Terraform](https://www.terraform.io/downloads.html) 0.12.x
- [Go](https://golang.org/doc/install) 1.12 (to build the provider plugin)

Usage
-----

For Terraform 0.12+ compatibility, the configuration should specify version 2 or higher:

```hcl
provider "mysql" {
version = "~> 2.0"
}
```

Building The Provider
---------------------
Expand All @@ -39,7 +50,7 @@ Using the provider
Developing the Provider
---------------------------

If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.8+ is *required*). You'll also need to correctly setup a [GOPATH](http://golang.org/doc/code.html#GOPATH), as well as adding `$GOPATH/bin` to your `$PATH`.
If you wish to work on the provider, you'll first need [Go](http://www.golang.org) installed on your machine (version 1.12+ is *required*). You'll also need to correctly setup a [GOPATH](http://golang.org/doc/code.html#GOPATH), as well as adding `$GOPATH/bin` to your `$PATH`.

To compile the provider, run `make build`. This will build the provider and put the provider binary in the `$GOPATH/bin` directory.

Expand Down
3 changes: 2 additions & 1 deletion mysql/resource_user_password_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ const testAccUserPasswordConfig_basic = `
resource "mysql_user" "test" {
user = "jdoe"
}
resource "mysql_user_password" "test" {
resource "mysql_user_password" "test" {
user = "${mysql_user.test.user}"
pgp_key = "keybase:joestump"
}
Expand Down

0 comments on commit 2403cb0

Please sign in to comment.