From c2306e441f25621ea60f5282592cd0c89dca2cd4 Mon Sep 17 00:00:00 2001 From: Jure Triglav Date: Thu, 10 Jan 2013 16:14:47 +0100 Subject: [PATCH] EC2 module should report back the public_dns_name too. --- ec2 | 1 + 1 file changed, 1 insertion(+) diff --git a/ec2 b/ec2 index d8c42919bd4..b3bc521825f 100644 --- a/ec2 +++ b/ec2 @@ -181,6 +181,7 @@ def main(): d = { 'id': inst.id, 'public_ip': inst.ip_address, + 'public_dns_name': inst.public_dns_name } instances.append(d)