Releases: avinor/terraform-azurerm-postgresql
Releases · avinor/terraform-azurerm-postgresql
v4.1.5
v4.1.4
v4.1.3
What's Changed
- Bump golang.org/x/net from 0.7.0 to 0.17.0 in /test by @dependabot in #23
- Bump google.golang.org/grpc from 1.53.0 to 1.56.3 in /test by @dependabot in #24
- Duplicated enabled_log settings from azurerm kubernetes by @nicholbs in #22
New Contributors
Full Changelog: v4.1.2...v4.1.3
v4.1.2
v4.1.1
- Upgrade providers
- Set
ssl_minimal_tls_version_enforced
toTLSEnforcementDisabled
to prevent breaking backwards compatibility.
v4.1.0
v4.0.2
Use azurerm v2.83.0
v4.0.1
v4.0.0
Breaking Changes!
- Change to terraform 0.13 syntax
- Set terraform min version >= 0.13
- Change from hashicorp/postgresql provider that moved to cyrilgdn/postgresql repository
v3.0.0
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 = []
},
]
},
]