Jira (BOLT-1328) AWS inventory discovery integration

2019-07-25 Thread Chris Cowell (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Chris Cowell updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Chris Cowell  
 
 
Labels: 
 docs_reviewed  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.309594.1558455992000.31718.1564085940137%40Atlassian.JIRA.


Jira (BOLT-1328) AWS inventory discovery integration

2019-07-11 Thread Tom Beech (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tom Beech updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Tom Beech  
 
 
Fix Version/s: 
 BOLT Next  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at https://groups.google.com/group/puppet-bugs.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.309594.1558455992000.13384.1562888520295%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


Jira (BOLT-1328) AWS inventory discovery integration

2019-07-08 Thread Lucy Wyman (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lucy Wyman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Lucy Wyman  
 

  
 
 
 
 

 
 As a user I want to be able to run bolt commands on my EC2 instances without manually adding them to my inventory.We should have an inventory discovery integration that gets targets from AWS.It should only get targets that are EC2 instances.Users should have the ability to filter instances based on the following. Filters are and'd together, not or'd:* TagsUsers should be able to reference instance data with {{instance.}} in the {{name}}, {{uri}}, or {{config}}. They should also be able to set these to tag values using {{tags.}}.{code}targets:  - _plugin: aws::ec2 region: us-west2 filter:   - name: tag:Ownervalue: 'Cody'  - name: tag-key # Anything that has OtherKey tag definedvalue: OtherKeyname: instance.nameconfig:   ssh:  host: instance.ipAddress{code}*Questions*:Should we filter out terminated instances? Decide later, but maybe have an option to turn it off?Config:{code}aws:  token: foo{code}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

 

Jira (BOLT-1328) AWS inventory discovery integration

2019-07-03 Thread Tom Beech (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tom Beech commented on  BOLT-1328  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
  Re: AWS inventory discovery integration   
 

  
 
 
 
 

 
 By default the aws-sdk-ec2 gem will return all instances, even if they're not running. Since non-running instaces do not have a public ip address or dns name, we probably want to filter these out. Another approach is to use the private ip address and dns name for any non-running instances, but I'm not sure how useful this is.  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at https://groups.google.com/group/puppet-bugs.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.309594.1558455992000.5360.1562175240099%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


Jira (BOLT-1328) AWS inventory discovery integration

2019-07-01 Thread Lucy Wyman (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lucy Wyman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Lucy Wyman  
 

  
 
 
 
 

 
 As a user I want to be able to run bolt commands on my EC2 instances without manually adding them to my inventory.We should have an inventory discovery integration that gets targets from AWS.It should only get targets that are EC2 instances.Users should have the ability to filter instances based on the following. Filters are and'd together, not or'd:* TagsUsers should be able to reference instance data with {{instance.}} in the {{name}}, {{uri}}, or {{config}}. They should also be able to set these to tag values using {{tags.}}.{code}targets:  - _plugin: aws::ec2filter:   - name: tag:Ownervalue: 'Cody'  - name: tag-key # Anything that has OtherKey tag definedvalue: OtherKeyname: instance.nameconfig:   ssh:  host: instance.ipAddress{code}*Questions*:Should we filter out terminated instances? Decide later, but maybe have an option to turn it off? Config:{code}aws:  token: foo{code}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
   

Jira (BOLT-1328) AWS inventory discovery integration

2019-07-01 Thread Tom Beech (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Tom Beech assigned an issue to Tom Beech  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Tom Beech  
 
 
Assignee: 
 Tom Beech  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at https://groups.google.com/group/puppet-bugs.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.309594.1558455992000.2529.1562019960226%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


Jira (BOLT-1328) AWS inventory discovery integration

2019-07-01 Thread Lucy Wyman (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lucy Wyman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Lucy Wyman  
 

  
 
 
 
 

 
 As a user I want to be able to run bolt commands on my EC2 instances without manually adding them to my inventory.We should have an inventory discovery integration that gets targets from AWS.It should only get targets that are EC2 instances.Users should have the ability to filter instances based on the following. Filters are and'd together, not or'd:* TagsUsers should be able to reference instance data with {{instance.}} in the {{name}}, {{uri}}, or {{config}}. They should also be able to set these to tag values using {{tags.}}.{code}targets:  - _plugin: aws::ec2filter:   - name: tag:Ownervalue: 'Cody'  - name: tag-key # Anything that has OtherKey tag definedvalue: OtherKeyname:  tags  instance .nameconfig:   ssh:  host: instance.ipAddress{code}*Questions*:Should we filter out terminated instances? Decide later, but maybe have an option to turn it off?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 
 

Jira (BOLT-1328) AWS inventory discovery integration

2019-07-01 Thread Lucy Wyman (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lucy Wyman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Lucy Wyman  
 

  
 
 
 
 

 
 As a user I want to be able to run bolt commands on my EC2 instances without manually adding them to my inventory.We should have an inventory discovery integration that gets targets from AWS.It should only get targets that are EC2 instances.Users should have the ability to filter instances based on the following. Filters are and'd together, not or'd:* TagsUsers should be able to reference instance data with {{instance.}} in the {{name}}, {{uri}}, or {{config}}. They should also be able to set these to tag values using {{tags.}}.{code} target-lookups targets :  -  plugin  _plugin : aws::ec2filter:   - name: tag:Ownervalue: 'Cody'  - name: tag-key # Anything that has OtherKey tag definedvalue: OtherKeyname: tags.nameconfig:   ssh:  host: instance.ipAddress{code}*Questions*:Should we filter out terminated instances? Decide later, but maybe have an option to turn it off?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  

Jira (BOLT-1328) AWS inventory discovery integration

2019-06-18 Thread Lucy Wyman (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lucy Wyman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Lucy Wyman  
 
 
Sprint: 
 Bolt  Ready for Grooming  Kanban  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at https://groups.google.com/group/puppet-bugs.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.309594.1558455992000.51511.1560876000218%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


Jira (BOLT-1328) AWS inventory discovery integration

2019-05-24 Thread Lucy Wyman (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lucy Wyman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Lucy Wyman  
 

  
 
 
 
 

 
 As a user I want to be able to run bolt commands on my EC2 instances without manually adding them to my inventory.We should have an inventory discovery integration that gets targets from AWS.It should only get targets that are EC2 instances.Users should have the ability to filter instances based on the following. Filters are and'd together, not or'd:* Tags Users should be able to reference instance data with { {instance.}} in the {{name}}, {{uri}}, or {{config}}. They should also be able to set these to tag values using {{tags.}}.{ code}target-lookups:  - plugin: aws::ec2filter:   - name: tag:Ownervalue: 'Cody'  - name: tag-key # Anything that has OtherKey tag definedvalue: OtherKeyname:  tag  tags .nameconfig:   ssh:  host: instance.ipAddress{code}*Questions*:Should we filter out terminated instances? Decide later, but maybe have an option to turn it off?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 
 

Jira (BOLT-1328) AWS inventory discovery integration

2019-05-24 Thread Lucy Wyman (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lucy Wyman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Lucy Wyman  
 

  
 
 
 
 

 
 As a user I want to be able to run bolt commands on my EC2 instances without manually adding them to my inventory.We should have an inventory discovery integration that gets targets from AWS.It should only get targets that are EC2 instances.Users should have the ability to filter instances based on the following. Filters are and'd together, not or'd:* Tags{code}target-lookups:  - plugin: aws::ec2filter:   - name: tag:Ownervalue: 'Cody'  - name: tag-key # Anything that has OtherKey tag definedvalue: OtherKeyname: tag.nameconfig:   ssh:  host: instance.ipAddress{code}* * Questions* * :Should we filter out terminated instances? Decide later, but maybe have an option to turn it off?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google 

Jira (BOLT-1328) AWS inventory discovery integration

2019-05-24 Thread Lucy Wyman (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lucy Wyman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Lucy Wyman  
 

  
 
 
 
 

 
 As a user I want to be able to run bolt commands on my EC2 instances without manually adding them to my inventory.We should have an inventory discovery integration that gets targets from AWS.It should only get targets that are EC2 instances.Users should have the ability to filter instances based on the following. Filters are and'd together, not or'd:* Tags{code}target-lookups:  - plugin: aws::ec2filter:   - name: tag:Ownervalue: 'Cody'  - name: tag-key # Anything that has OtherKey tag definedvalue: OtherKeyname: tag.nameconfig:   ssh:  host: instance.ipAddress   tmpdir: instance.tmpdir {code}  **  Questions ** :Should we filter out terminated instances? Decide later, but maybe have an option to turn it off?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message 

Jira (BOLT-1328) AWS inventory discovery integration

2019-05-24 Thread Lucy Wyman (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lucy Wyman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Lucy Wyman  
 

  
 
 
 
 

 
 As a user I want to be able to run bolt commands on my EC2 instances without manually adding them to my inventory.We should have an inventory discovery integration that gets targets from AWS.It should only get targets that are EC2 instances.Users should have the ability to filter instances based on the following. Filters are and'd together, not or'd:* Tags{code}target-lookups:  - plugin: aws::ec2filter:   - name: tag:Ownervalue: 'Cody'  - name: tag-key # Anything that has OtherKey tag definedvalue: OtherKey name: tag.nameconfig:   ssh:  host: instance.ipAddress  tmpdir: instance.tmpdir {code}  Questions:Should we filter out terminated instances? Decide later, but maybe have an option to turn it off?  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because 

Jira (BOLT-1328) AWS inventory discovery integration

2019-05-24 Thread Lucy Wyman (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lucy Wyman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Lucy Wyman  
 

  
 
 
 
 

 
 As a user I want to be able to run bolt commands on my EC2 instances without manually adding them to my inventory.We should have an inventory discovery integration that gets targets from AWS.It should only get targets that are EC2 instances.Users should have the ability to filter instances based on  the following. Filters are and'd together, not or'd :* Tags{code} target-lookups:  - plugin: aws::ec2filter:   - name: tag:Ownervalue: 'Cody'  - name: tag-key # Anything that has OtherKey tag definedvalue: OtherKey {code}  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email 

Jira (BOLT-1328) AWS inventory discovery integration

2019-05-21 Thread Lucy Wyman (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lucy Wyman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Lucy Wyman  
 
 
Summary: 
 AWS  dynamic  inventory  plugin  discovery integration  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at https://groups.google.com/group/puppet-bugs.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.309594.1558455992000.14449.1558456920104%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.


Jira (BOLT-1328) AWS inventory discovery integration

2019-05-21 Thread Lucy Wyman (JIRA)
Title: Message Title


 
 
 
 

 
 
 

 
   
 Lucy Wyman updated an issue  
 

  
 
 
 
 

 
 
  
 
 
 
 

 
 Puppet Task Runner /  BOLT-1328  
 
 
  AWS inventory discovery integration   
 

  
 
 
 
 

 
Change By: 
 Lucy Wyman  
 
 
Sprint: 
 Bolt  Kanban  Ready for Grooming  
 

  
 
 
 
 

 
 
 

 
 
 Add Comment  
 

  
 

  
 
 
 
  
 

  
 
 
 
 

 
 This message was sent by Atlassian JIRA (v7.7.1#77002-sha1:e75ca93)  
 
 

 
   
 

  
 

  
 

   





-- 
You received this message because you are subscribed to the Google Groups "Puppet Bugs" group.
To unsubscribe from this group and stop receiving emails from it, send an email to puppet-bugs+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-bugs@googlegroups.com.
Visit this group at https://groups.google.com/group/puppet-bugs.
To view this discussion on the web visit https://groups.google.com/d/msgid/puppet-bugs/JIRA.309594.1558455992000.14450.1558456920150%40Atlassian.JIRA.
For more options, visit https://groups.google.com/d/optout.