File: metaflow-cfn-template.yml
The CloudFormation template requests Postgres version 16.1, but apparently, AWS doesn't support 16.1 anymore.
RDSMasterInstance:
Type: AWS::RDS::DBInstance
Properties:
Engine: 'postgres'
EngineVersion: '16.1'
...
You can fix the issue by bumping the version to 16.6.
File: metaflow-cfn-template.yml
The CloudFormation template requests Postgres version
16.1, but apparently, AWS doesn't support16.1anymore.You can fix the issue by bumping the version to
16.6.