Commit 14eda0d1 by Bruce Pennypacker

Added replication_source to the results

parent 1ef29a36
...@@ -511,6 +511,11 @@ def main(): ...@@ -511,6 +511,11 @@ def main():
d["endpoint"] = None d["endpoint"] = None
d["port"] = 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) module.exit_json(changed=True, instance=d)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment