Only inventory "running" EC2 instances. "stopped" is also a valid state and these should not be inventoried.
This commit is contained in:
parent
0243b7be7c
commit
168fcb0a4a
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue