Commit 168fcb0a by Tim Gerla

Only inventory "running" EC2 instances. "stopped" is also a valid state and…

Only inventory "running" EC2 instances. "stopped" is also a valid state and these should not be inventoried.
parent 0243b7be
......@@ -274,7 +274,7 @@ class Ec2Inventory(object):
addressable '''
# Only want running instances
if instance.state == 'terminated':
if instance.state != 'running':
return
# Select the best destination address
......
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