2023-06-25から1日間の記事一覧

{Terraform}RDS/GCP

https://registry.terraform.io/providers/hashicorp/google/latest/docs/resources/sql_database_instance -- 1. macにTerraformインストール brew tap hashicorp/tapbrew install hashicorp/tap/terraformbrew updatebrew upgrade hashicorp/tap/terraform…

パスワード有効期限

DB

MySQL (8.0.33)https://dev.mysql.com/doc/refman/8.0/ja/alter-user.html drop user if exists user2; create user user2@'%' identified by 'user2';grant process on *.* to 'user2'@'%'; select Host, User, password_expired, password_last_changed, p…