awsdocs / amazon-rds-user-guide

The open source version of the Amazon RDS docs. You can submit feedback & requests for changes by submitting issues in this repo or by making proposed changes & submitting a pull request.
Other
150 stars 231 forks source link

fix(documentation): autovacuum value #183

Closed jeremychauvet closed 1 year ago

jeremychauvet commented 1 year ago

Description of changes: This MR aims to change the value of autovacuum parameter. You can see on the following picture allowed values:

image

This MR will also prevent the following continuous drift on Terraform stacks:

# module.xxxx.rds.aws_db_parameter_group.postgres will be updated in-place
  ~ resource "aws_db_parameter_group" "postgres" {
        id          = "xxxxx"
        name        = "xxxxx"
      - parameter {
          - apply_method = "immediate" -> null
          - name         = "autovacuum" -> null
          - value        = "0" -> null
        }
      + parameter {
          + apply_method = "immediate"
          + name         = "autovacuum"
          + value        = "Off"
        }
    }
LavanyaGunreddi commented 1 year ago

Hi, sorry for the delay. The doc has been modified and the change will reflect in the next refresh cycle. Thanks!