Skip to content

v3.0.0

Compare
Choose a tag to compare
@yngveh yngveh released this 26 Mar 06:58

NB! Breaking change

New feature for setting password for users. This can be usefor for setting password from azure key vault data source.

  • New variable administrator_passord
  • New manadatory password attribute for users. Set this to null to autogenerate password
databases = [
    {
      name      = "my_database"
      charset   = "UTF8"
      collation = "English_United States.1252"
      users = [
        {
          name     = "a_user"
          password = null
          grants = []
       },
    ]
  },
]