forked from petoju/terraform-provider-mysql
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to lazy connections to MySQL and add TLS configuration support…
… to the provider (hashicorp#43) * Switch to using the Golang struct and DSN formatter from the MySQL module. * Add the TLS option to the provider docs. * Add a retry to the MySQL connection logic. This lets the server be a little lazy in booting up without killing the provisioning processes that require it. * Switch to detecting the version in a way that works with MySQL and MariaDB. * Add the ability to import databases.
- Loading branch information
Joe Stump
authored
Oct 22, 2018
1 parent
5c63266
commit e3dc61a
Showing
13 changed files
with
231 additions
and
145 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
example.tf | ||
terraform.tfplan | ||
terraform.tfstate | ||
terraform-provider-mysql | ||
bin/ | ||
modules-dev/ | ||
/pkg/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.