Joost Cassee
1bcb90e785
Add wait option to route53 module
...
This option makes the module wait for the changes to replicate to all
Amazon DNS servers.
9 years ago
Brian Coca
1b8487ffce
Merge pull request #2753 from jonhadfield/return_allocation_id
...
return allocation id for address created in vpc
9 years ago
Brian Coca
4d19ee903c
crrected version added
9 years ago
Brian Coca
316749c653
Merge pull request #2548 from Etherdaemon/propose_wait_for_removed_ec2_elb_lb
...
wait_for to ensure ELB has been removed from AWS
9 years ago
Brian Coca
b2c94d0eab
corrected version added
9 years ago
Brian Coca
18284d18a3
Merge pull request #2489 from jimbydamonk/evaluate_targe_health
...
Add evaluate taget health for alias based records
9 years ago
Brian Coca
b08cf6b94f
Merge pull request #2730 from bcoca/iam_policy_json
...
be smarter when dealing with policy_json input
9 years ago
Jon Hadfield
0320411d03
return allocation id for vpc address.
9 years ago
Ben Visser
410ee32770
staging that num_nodes is required when state=present
9 years ago
Brian Coca
1fe6479617
be smarter when dealing with policy_json input
...
Now module will assume that if the argument is a string it is already formated as json
and will only try to convert non strings into json string.
Also removed unused 'msg' var declarations and the ifs that set them
fixes #2009
9 years ago
Toshio Kuratomi
d6d3a8b21c
Merge pull request #1903 from andynelson/extra-route-targets
...
ec2_vpc module update (eni and vpc peering connections & return state on termination)
9 years ago
Toshio Kuratomi
5fe0fbbf20
Merge pull request #1883 from haad/ec2_elb_fixes
...
Two fixes for ec2_elb_lb module to make stickiness work with undefined expiration period
9 years ago
Brian Coca
6b13da738b
updated module docs, added choices to state
9 years ago
Michel Alexandre Salim
18f4f5dcc6
Set the argument type for ec2_vol's encrypted parameter
...
If this is not set, Ansible parses the parameter as a string.
This is fine if the parameter is not provided by the caller, but
if it is set to False or True explicitly, ec2_vol receives this as
the string 'False' or the string 'True', both of which are truthy.
Thus, without this fix, setting the parameter results in encryption
always enabled.
9 years ago
Etherdaemon
a56ffff51b
Update to wait and wait_timeout with a maximum of 10 minutes timeout
9 years ago
Brian Coca
15dcabe012
Merge pull request #2541 from joshuaeke/patch-1
...
Update ec2.py remove state tag
9 years ago
Arthur Clement
bfcdb05597
Example of single instance with ssd gp2 root volume creation
9 years ago
Brian Coca
43d2ecda06
Merge pull request #2546 from traveloka/fix-ec2-snapshot-info
...
Fix ec2_snapshot documentation
9 years ago
Toshio Kuratomi
cd9a7667aa
Don't raise or catch StandardError in amazon modules
9 years ago
Mike Buzzetti
b00e1b556c
Add evaluate taget health for alias based records
9 years ago
Brian Coca
aad7497f18
Merge pull request #2542 from maxrothman/patch-1
...
Fix rds "promote" command never promoting
9 years ago
Etherdaemon
185a371efb
Proposing a wait_for function to ensure elb has been successfully removed
9 years ago
Jay Rogers
cab97cd2d9
Update in Amazon IAM Policy Documentation
...
There were typos in the documentation that made the examples seem misleading of what was being demonstrated. This update fixes that.
9 years ago
Michel Alexandre Salim
b07ff99cac
Fix ec2_snapshot documentation
...
last_snapshot_min_age is added in 2.0, not 1.9
9 years ago
Max Rothman
f1f201c234
Fix rds "promote" command never promoting
...
Previously, the `promote` command in the `rds` module would always return OK and never actually promote an instance. This was because `promote_db_instance()` had its conditions backwards: if the instance had the `replication_source` attribute indicating that it **was** a replica, it would set `changed = False` and do nothing. If the instance **wasn't** a replica, it would attempt to run `boto.rds.promote_read_replica()`, which would always fail.
9 years ago
joshuaeke
ab420300ef
Update ec2.py remove state tag
...
'exact_count' and 'state' are mutually exclusive options they should not be in the following examples:
- # Enforce that 5 running instances named "database" with a "dbtype" of "postgres" example and
- # Enforce that 5 instances with a tag "foo" are running
9 years ago
Toshio Kuratomi
8ae30f1822
Minor simplification of code
9 years ago
Toshio Kuratomi
5617cd57cf
Merge pull request #2512 from erewh0n/ec2-require-all-groups
...
Fail ec2 module when group names cannot resolve to IDs
9 years ago
Toshio Kuratomi
1270bacee7
Merge pull request #2425 from aioue/patch-5
...
Update ec2_elb_lb.py
9 years ago
Brian Coca
6bd8020f65
corrected version_added, removed empty alias
9 years ago
Brian Coca
b789db7b9d
Merge pull request #2211 from kai11/feature/spot_launch_group
...
Added launch group support for ec2 module
9 years ago
Keith Hassen
39ef6a1a80
Fail if any group name is not resolved to an ID.
9 years ago
Brian Coca
0e043f8c58
Merge pull request #2505 from donckers/devel
...
Fix #822 - Correct failure to overwrite existing records
9 years ago
Brian Coca
6d722608d6
Merge pull request #2413 from raben2/devel
...
Absent Function was not working on user with login profile
9 years ago
Daniel Donckers
3b8147af30
Fixes #822
9 years ago
Mike Riddle
062c7764e6
Fixed error message: TypeError: fail_json() takes exactly 1 argument (2 given)
9 years ago
Brian Coca
1d6b31a90f
fixed break order
9 years ago
Tom Paine
4bc834485a
Update ec2_elb_lb.py
9 years ago
Brian Coca
2c92fc4d3c
Merge pull request #2484 from bcoca/ec2_elb_get_really_all
...
Ec2 elb get really all items
9 years ago
Brian Coca
1258f82648
Merge pull request #2467 from cinek810/fix_ident
...
It may be string with int comparison, if ansible user specifies ident…
9 years ago
Marcin Stolarek
b6223ca729
Save changes of special characters to rset, without that comparison rset.to_xml() == wanted_rset.to_xml() will fail if record contains * or @ characters.
9 years ago
Marcin Stolarek
3193961cf5
It may be string with int comparison, if ansible user specifies identifier as int
9 years ago
J Levitt
889274a525
Add rds restore example to list of examples
...
There was no db restore example. I've provided one that shows how to do the restore, then add a security group (you cannot add the security group during the restore step -- it has to be done in a modify step afterward). Also, I show how to get the endpoint.
9 years ago
Rabenstein
7d665db5e5
Squash of 3 commits for bugfix.
...
Absent unction was not working on user with login profile
also fixed the exception handling
fixed the delete user function
now works with or without loginprofile (password)
typo
9 years ago
Andy Nelson
9618986804
Update to ec2_vpc.py to:
...
1 allow interface ids and vpc peering connections as route targets
2 set state to "terminated" when VPC is removed
3 fix some comment typos
updates per PR comments
9 years ago
Tom Paine
dd26c37f6b
Update ec2_elb_lb.py
...
add connection draining default
9 years ago
Toshio Kuratomi
62672b8b85
Merge pull request #2228 from abridgett/feature/add_ec2_elb_lb_idle_timeout
...
add idle_timeout support
9 years ago
Brian Coca
cac69f3135
added missing version_added
9 years ago
Brian Coca
aa6f80669a
Merge pull request #534 from ferrants/ami-launch-permissions
...
ec2_ami can update an ami's launch_permissions
9 years ago
Brian Coca
c91da5714e
Merge pull request #2279 from wimnat/feature/iam_policy_idempotentcy
...
Allow iam_policy to maintain idempotence if the role referenced has …
9 years ago