terraform-provider-mysql
terraform-provider-mysql copied to clipboard
Terraform MySQL provider – unofficial fork
Hi, I can connect to my RDS aurora mysql 8 like this: `mysql -h'' -u'root' -p'' --ssl-ca=./amazon-aurora-cluster-global-bundle.pem ` But when I use this provider, using this config: ``` provider "mysql"...
### Provider version provider registry.terraform.io/petoju/mysql v3.0.54 ### Terraform Configuration Files In the ideal case, provide narrowed-down reproducer of your case. This should be a complete module with config connecting to...
This is a feature request. Since in terraform it's impossible to set the prevent_destroy lifecycle hook using variables (see https://github.com/hashicorp/terraform/issues/22544) it would be nice if this could be handled by...
## Context The deprecated Hashicorp Terraform provider supported role grants in a very clunky way: ``` # Example 1 resource "mysql_grant" "test_procedure" { user = "jdoe" host = "%" privileges...
Just looking for some advice, I am trying to create a user with the mysql user resource, but using the caching_sha2_password authentication method. I cannot alter the default authentication method...
Hello! This is a feature request for adding `COMMENT` to the MySQL `CREATE USER` statements through the `mysql_user` resource. The signature for the `CREATE USER` statement in MySQL 8.0: ```...
### Terraform Version Terraform v1.5.7 ### Affected Resource(s) mysql_grant ### Terraform Configuration Files ```hcl resource "mysql_user" "pUser1" { user = "pUser1" host = "%" plaintext_password = "xxx" } resource "mysql_user"...
Any chance a `mysql_procedure` resource could be added to this provider? I've tested out doing this with a `local-exec`, but that method risks exposing passwords in the logs or in...
Thnx for your provider, locally it works great for Google Cloud SQL instances using IAM auth 👍 locally it works because it uses https://cloud.google.com/docs/authentication/application-default-credentials#personal but in **Terraform Cloud it's not...
Hey guys, i don't have much experience with go and in developing terraform providers. I wanted to use this provider to create a simple privilige management. I've discovered the problem...