Michael DeHaan
bbb88517ef
Since the ec2 parameter is named 'key_name' and 'keypair' is just an alias, use
...
the primary name of the parameter in the examples.
2014-02-28 13:52:47 -05:00
James Cammarata
3274785350
Merge pull request #5689 from pgehres/devel
...
Adding the region to the output of the ec2 module's creation of a new in...
2014-02-26 14:45:12 -06:00
James Cammarata
8a7c68dc18
Merge branch 'ec2-params' of https://github.com/scottanderson42/ansible into scottanderson42-ec2-params
...
Conflicts:
lib/ansible/module_utils/ec2.py
library/cloud/ec2
2014-02-26 09:37:26 -06:00
James Laska
dbd3194e9c
Resolves issue#6067 by allowing exact_count=0
2014-02-19 16:29:15 -05:00
Peter Gehres
b5761750c4
Adding the region to the output of the ec2 module's creation of a new instance.
2014-02-13 22:40:49 -08:00
James Cammarata
056d54ebd3
Adding 'validate_certs' option to EC2 modules
...
When disabled, the boto connection will be instantiated without validating
the SSL certificate from the target endpoint. This allows the modules to connect
to Eucalyptus instances running with self-signed certs without errors.
Fixes #3978
2014-02-13 12:32:49 -06:00
Will Thames
c8127ea874
ec2 module fails when state is not absent
...
tagged_instances is initialised in a scope not visible
when state is not absent.
2014-02-13 19:51:33 +10:00
Michael DeHaan
d3c1b8de78
Merge pull request #5883 from amirhhz/improve-ec2-module-docs
...
Improve ec2 module docs
2014-02-09 14:07:35 -05:00
Scott Anderson
baf508a379
Change standard AWS access and secret key parameter names to aws_access_key and aws_secret_key. Fixes an authentication problem with the rds module and standardizes the naming convention on something more encompassing than ec2_*_key.
2014-02-08 18:35:26 -05:00
James Tanner
a62af82757
Make ec2 exact_count and count mutually exclusive
2014-02-07 13:42:43 -05:00
James Tanner
70ebb05190
Return a tagged_instances list for hosts that matched the count_tag
2014-02-07 13:07:34 -05:00
James Tanner
f101768a9d
Make an example that sets the instance Names
2014-02-07 10:49:13 -05:00
James Tanner
005ef837d9
Update docstrings
2014-02-07 10:34:45 -05:00
James Tanner
fd919062cb
Add exact_count and count_tag to the ec2 module.
2014-02-06 23:25:57 -05:00
Will Thames
7600c664fe
Create a common EC2 connection argument spec for EC2 modules
...
Refactor the currently well-factored ec2 modules (i.e. those that already use ec2_connect) to
have a common argument spec. The idea is that new modules can use this spec without duplication
of code, and that new functionality can be added to the ec2 connection code (e.g. security
token argument)
2014-02-06 15:27:41 +10:00
Amir H. Hajizamani
843f4e7d7c
Neaten up example YAML with 2-space indenting
2014-02-05 15:14:44 +00:00
Amir H. Hajizamani
7c38e8a225
Example should put instance_ids list in quotes for avoid YAML error
2014-02-05 15:12:41 +00:00
Timur Batyrshin
658c15930e
reword "except Error as e:" into "except Error, e:" to be compatible with Python 2.5 ( #5852 )
2014-02-03 13:00:40 -06:00
James Tanner
5cbe24913f
Fix start/stop example in ec2
2014-01-27 17:48:42 -05:00
James Tanner
1641361057
Merge branch 'feat/ec2_start_stop' of git://github.com/Geryon/ansible into Geryon-feat/ec2_start_stop
2014-01-27 17:39:24 -05:00
willthames
de659af82b
Added the ability to add volumes to instances at creation time
...
This allows a volume to be cloned from a snapshot, a brand new
volume to be created, or an ephemeral volumes to be associated
at time of instance creation.
This avoids any race conditions associated with creating extra volumes
after instance creation (e.g. writes happening before the volume is
mounted).
In addition, this allows the root volume to be edited
2014-01-25 12:38:41 +10:00
willthames
8fb5a66944
keypair is not absolutely required when creating ec2 instances
2014-01-14 09:12:01 +10:00
willthames
12005a1cd0
Move more responsibility to common EC2 module
...
Moved `AWS_REGIONS` into `ec2` module
Created `ec2_connect` method in `ec2` module
Updated modules able to use `ec2_connect` and `AWS_REGIONS`
2013-12-17 14:07:24 +10:00
Nicholas DeClario
b2ea24bc08
Added ability to start and stop existing EC2 instances.
2013-12-12 17:16:59 -05:00
James Tanner
04b031756c
Merge pull request #4502 from dxsarmit/ansible
...
New library/cloud/ec2 module parameter (assign_public_ip) for non-default VPC instance launching.
2013-12-02 09:43:20 -05:00
Rob Szewczyk
fe95745a20
Correcting the security group id lookup from the list of security group names
2013-11-08 17:46:41 -05:00
James Laska
2a5874b94f
Honor wait on ec2 instance termination
2013-11-01 18:57:20 -04:00
James Tanner
afa5988391
Fixes #4540 Use shared module snippet to evaluate ec2 credentials
2013-11-01 11:59:24 -04:00
Michael DeHaan
187ebf2f56
Leverage 4318b27 and no longer treat instance tags as JSON, but as dictionary types which could be key=value or dicts or JSON or references.
2013-10-31 18:46:13 -04:00
Scott Armit
ef317ecde7
If an AWS account does not have a default subnet in their VPC configuration, then creating instances in that VPC will not automatically provide a public IP/DNS. Boto added this functionality in 2.13.0 (NetworkInterfaceSpecification.associate_public_ip_address).
...
This change adds assign_pubic_ip as a parameter to the ec2 module, ensuring that it is not set to one of BOOLEANS_TRUE if vpc_subnet_id is not also set, and if Boto is less than 2.13.0.
2013-10-28 10:11:38 -04:00
James Tanner
b803aac6ec
Fixes #4500 change ec2 module params to type=bool
...
Revert 4833c2fdf0
2013-10-24 09:19:25 -04:00
Andy Kluger
f97871e0d9
Corrected docs ("monitor" -> "monitoring" and dissociated monitoring from instance_tags in examples)
2013-10-11 13:32:23 -04:00
Michael DeHaan
0e909640c5
Make group_id be a list.
2013-10-07 15:34:35 -04:00
James Cammarata
8b010cbb45
Make the ec2 wait code a little smarter
...
The code to determine the number of running instances could blow up
if the response from AWS did not actually contain any data. This code
makes it a bit smarter in handling, so that it will wait for a valid
response regardless of the wait condition.
Fixes #3980
2013-09-25 16:16:52 -05:00
Charles Blonde
00ec91bb36
Update instance_profile_name message
2013-09-12 22:14:27 +02:00
Charles Blonde
ac4e16a99b
Add support to Boto library < 2.5.0
2013-09-09 23:48:35 +02:00
James Cammarata
bb75050912
Merge branch 'rb2' of https://github.com/bpennypacker/ansible into bpennypacker-rb2
...
Conflicts:
library/cloud/route53
2013-08-23 11:36:45 -05:00
Joshua Lund
654b37f212
Fixing typo in EC2 modules
2013-08-21 18:13:05 -06:00
Bruce Pennypacker
0f458210bc
Rebase attempt
...
No idea if I'm rebasing properly or not. This is my first attempt.
2013-08-20 15:14:16 -04:00
Lorin Hochstein
729c03ed88
Minor doc update to s3 & ec2 modules
...
Adds some additional docs about the module parameters for s3
and ec2 modules.
2013-08-06 12:23:25 -04:00
Michael DeHaan
5f18a53530
Fixup docs formatting.
2013-08-06 10:53:56 -04:00
Michael DeHaan
31ccf1dfda
Merge pull request #3748 from lorin/ec2-idempotency
...
Add description to id parameter of ec2 module
2013-08-03 10:31:07 -07:00
Lorin Hochstein
631dc8b7b1
Add description to id parameter of ec2 module
...
Add some details in the docs about how the id parameter of the ec2
module behaves.
2013-08-02 23:01:17 -04:00
Lorin Hochstein
3647d112f8
ec2: Removed unused line
...
Remove the reference to the unused "termination_list" parameter
in the ec2 module. The instance_ids parameter is the one that contains
the list of instance ids to be terminated.
2013-08-02 22:35:24 -04:00
Lorin Hochstein
0c1f6b4f51
ec2: check for changes
...
In the ec2 module, if an id is specified, check if there have been
any changes. If not, return changed=False
Fixes #3746
2013-08-02 22:23:41 -04:00
Ralph Tice
1529a974e1
fixed vpc provisioning / clarified group_id usage
2013-07-22 17:00:13 -05:00
Michael DeHaan
2c965476ed
Merge pull request #3550 from lwade/ec2role
...
Added IAM role support
2013-07-20 08:55:45 -07:00
Michael DeHaan
1ff8c78f26
Removing legacy variable usage.
2013-07-19 09:42:22 -04:00
Lester Wade
9ec103e748
Added IAM role support
2013-07-16 13:31:30 +01:00
Michael DeHaan
fafb3c10a5
Merge pull request #3293 from jarv/devel
...
Adds termination support to the ec2 module
2013-06-30 16:40:51 -07:00