Skip to content

Commit

Permalink
Merge pull request petoju#85 from terraform-providers/issue/upgrade-t…
Browse files Browse the repository at this point in the history
…o-tf-0.12

Issue/upgrade to tf 0.12
  • Loading branch information
davidji99 authored Jun 14, 2019
2 parents f881763 + c074ba3 commit 65d4a7d
Show file tree
Hide file tree
Showing 1,306 changed files with 252,834 additions and 35,336 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
## 1.6.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
29 changes: 3 additions & 26 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,36 +1,13 @@
module github.com/terraform-providers/terraform-provider-mysql

require (
github.com/apparentlymart/go-cidr v1.0.0 // indirect
github.com/aws/aws-sdk-go v1.15.59 // indirect
github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect
github.com/blang/semver v3.5.1+incompatible // indirect
github.com/go-sql-driver/mysql v1.4.0
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
github.com/hashicorp/go-cleanhttp v0.5.0 // indirect
github.com/hashicorp/go-getter v0.0.0-20180809191950-4bda8fa99001 // indirect
github.com/hashicorp/go-hclog v0.0.0-20181001195459-61d530d6c27f // indirect
github.com/hashicorp/go-plugin v0.0.0-20181004024435-314501b665e0 // indirect
github.com/hashicorp/go-safetemp v1.0.0 // indirect
github.com/hashicorp/go-uuid v1.0.0 // indirect
github.com/hashicorp/go-version v1.0.0
github.com/hashicorp/go-version v1.1.0
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/hashicorp/hcl2 v0.0.0-20181001210626-3e4b7e0eb20e // indirect
github.com/hashicorp/hil v0.0.0-20170627220502-fa9f258a9250 // indirect
github.com/hashicorp/logutils v1.0.0 // indirect
github.com/hashicorp/terraform v0.11.9
github.com/hashicorp/terraform v0.12.0
github.com/hashicorp/vault v0.11.3 // indirect
github.com/keybase/go-crypto v0.0.0-20181017165231-e696c8039bba // indirect
github.com/mitchellh/cli v1.0.0 // indirect
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/go-homedir v1.0.0 // indirect
github.com/mitchellh/hashstructure v1.0.0 // indirect
github.com/mitchellh/mapstructure v1.1.2 // indirect
github.com/pierrec/lz4 v2.0.5+incompatible // indirect
github.com/satori/go.uuid v1.2.0
github.com/ulikunitz/xz v0.5.4 // indirect
github.com/zclconf/go-cty v0.0.0-20181017232614-01c5aba823a6 // indirect
golang.org/x/crypto v0.0.0-20181015023909-0c41d7ab0a0e // indirect
golang.org/x/net v0.0.0-20181017193950-04a2e542c03f
golang.org/x/net v0.0.0-20190502183928-7f726cade0ab
)
340 changes: 314 additions & 26 deletions go.sum

Large diffs are not rendered by default.

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
15 changes: 15 additions & 0 deletions vendor/cloud.google.com/go/AUTHORS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions vendor/cloud.google.com/go/CONTRIBUTORS

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

202 changes: 202 additions & 0 deletions vendor/cloud.google.com/go/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 65d4a7d

Please sign in to comment.