·
93 commits
to main
since this release
Major Changes
-
ea1cc48: # Major Changes
-
Replaced the
tier
variable with a newuse_case
variable for tiering configuration. -
Add new variables for replica:
create_replica
: Set totrue
by default, this determines whether or not to create a replica.replica_location
: optional value used to specify a different location for the replica
-
Removed metrics block from azurerm_monitor_diagnostic_setting for deprecation .
Upgrade Notes
Old Value New Value Description s none Now don't exist purposess m default Ideal for production
environments purposesl none Now don't exist workloads This change simplifies and clarifies the selection of Postgres Server tiers.
For Example:
-
Before
module "postgres" { source = "pagopa-dx/azure-postgres-server/azurerm version = "~> 1.0" tier = "m" # ...other variables... }
-
After
module "postgres" { source = "pagopa-dx/azure-postgres-server/azurerm version = "~> 2.0" use_case = "default" # ...other variables remain unchanged... }
-