https://pulumi.com logo
Title
a

astonishing-dinner-89046

07/08/2021, 11:10 PM
Howdy. I’m trying to instantiate an RDS Postgres instance with engine version 10.16 but for whatever reason it chooses 10.15 once provisioned. Any ideas?
# Create RDS Postgres instance
postgresql_primary = aws.rds.Instance("rds_primary",
    identifier="test",
    instance_class="db.t3.micro",
    #allow_major_version_upgrade=True,
    auto_minor_version_upgrade=True,
    engine="postgres",
    engine_version=10.16,
b

billowy-army-68599

07/08/2021, 11:34 PM
Can you try making it a string?
a

astonishing-dinner-89046

07/09/2021, 12:06 AM
Thanks! I obviously skimmed that part in the doc. All good now