- Newest
- Most votes
- Most comments
In the AWS Console, navigate to the ****DMS ****(Database Migration Service) section using the search bar.
From the left side navigation menu , select Replication Instances.
Select the link to the replication instance that you want to know the version of.
The Summary section will display the version of the DMS instanceunder Engine Version heading.
this link provides the most current information:
https://docs.aws.amazon.com/dms/latest/userguide/CHAP_ReleaseNotes.html
Ideally it should launch latest version of DMS instance if you dont provide version. I hope you are using some automation tool which might be defaulting to 3.4.6. If you manually input the version to 3.4.7 it should launch the required one. if you use manual console way to launch a replication instance it should launch with version 3.4.7 (latest)
I am using HashiCorp terraform aws_dms_replication_instance and not specifying an engine_version. I have tried searching to see if HashiCorp is defaulting a version number but can't find any. I would assume there is no default because AWS says if you don't specify a version number you get the latest.
Hi , if you use CFN, this works fine in Resources section:
CdcReplicationInstance:
Type: AWS::DMS::ReplicationInstance
DeletionPolicy: Delete
Properties:
ReplicationInstanceClass: !Ref CdcInstanceType
EngineVersion: !Ref CdcEngineVersion
#Same as Subnet1
AvailabilityZone: !Select
- 0
- !GetAZs ""
ReplicationSubnetGroupIdentifier: !Ref CdcDmsSubnetGroup
where CdcEngineVersion is in Parameter section:
CdcEngineVersion:
Description: 'dms cdc engine version'
Default: '3.4.7'
Type: String
So you are specifying an engine version number. But is that the latest number? How do you know if that is the latest engine version number?
Hi, If you use CloudFormation, use this:
![screenshot(/media/postImages/original/IMUwG5XsnzRYq4t-hlioznMg)
I use this all the time and it works fine to reach the version of engine that you want
Relevant content
- asked 2 years ago
- AWS OFFICIALUpdated a month ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated a year ago
- AWS OFFICIALUpdated a year ago
That does show the version that is currently being used by the replication instance. How do I know what the latest possible version is? Does AWS publish the latest possible version number anywhere?
The text of your link is what I am looking for. Thank you! However, the link itself just comes back to this question.