Added replication_source to the results
This commit is contained in:
parent
1ef29a3654
commit
14eda0d125
1 changed files with 6 additions and 1 deletions
|
@ -511,6 +511,11 @@ def main():
|
|||
d["endpoint"] = None
|
||||
d["port"] = None
|
||||
|
||||
# ReadReplicaSourceDBInstanceIdentifier may or may not exist
|
||||
try:
|
||||
d["replication_source"] = my_inst.ReadReplicaSourceDBInstanceIdentifier
|
||||
except Exception, e:
|
||||
d["replication_source"] = None
|
||||
|
||||
module.exit_json(changed=True, instance=d)
|
||||
|
||||
|
|
Loading…
Reference in a new issue