whiter
cccef7b135
Remove access_key and secret_key as these are provided by aws doc fragment
...
Remove ec2 doc fragment as region is not required for IAM
2015-10-15 12:58:03 +11:00
Brian Coca
6f9ff0b914
Merge pull request #2248 from Constantin07/devel
...
ec2_vol: added deleteOnTermination in the output of list option
2015-10-12 18:47:31 -04:00
Brian Coca
f1fc76d732
Merge pull request #2214 from fperks/fix-ec2-error-on-instance-status-change
...
Fix error on ec2 status change
2015-10-12 18:38:10 -04:00
Constantin Bugneac
83291dbefc
Added deleteOnTermination in the output of list option
2015-10-12 10:49:16 +01:00
Abhijit Menon-Sen
ebd8b12e15
Add missing variable initializations
...
Without this, «ec2: state=stopped instance_ids=…» would fail with a
traceback like this:
if inst.get_attribute('sourceDestCheck')['sourceDestCheck'] != source_dest_check:
NameError: global name 'source_dest_check' is not defined
2015-10-11 07:25:56 +05:30
Frank van Tol
2c24d0482b
Update ec2_asg.py
2015-10-09 14:35:26 +02:00
Brian Coca
5f1f1b2904
Merge pull request #2216 from wimnat/feature/revert-1906
...
Set default of dimensions parameter to be empty dict
2015-10-08 11:03:21 -04:00
Rob
5a6599d70d
Move import statements for easier debugging (correct line numbers)
2015-10-08 14:03:40 +11:00
Brian Coca
9eb0c178ec
Merge pull request #725 from robbwagoner/cloudformation-resources
...
module cloudformation: include a CFN stack's resources in the result
2015-10-07 21:35:39 -04:00
Brian Coca
692781c936
Merge pull request #2070 from fvant/patch-7
...
We are copying from S3, the bucket is the source, not the target.
2015-10-07 21:34:48 -04:00
Brian Coca
7af7ef2ef7
Merge pull request #2086 from wimnat/feature/issue-2085
...
Remove 'str' type so that json is properly quoted
2015-10-07 21:34:00 -04:00
Brian Coca
547690c785
Merge pull request #2169 from stelligent/devel
...
Replaces 'old' get_ec2_creds connection method with get_aws_connection_info
2015-10-07 21:26:14 -04:00
Brian Coca
c4f64d822c
changed modules to use common ec2 docs for region
2015-10-07 16:16:24 -04:00
fperks
7fd3262c3c
Fix error on ec2 status change
...
Both `source_dest_check` and `termination_protection` variables are not
available within the scope of the startstopec2 instance method. This just
pulls them from module.params.
2015-10-07 13:43:57 -04:00
Rob
ca517abf07
Set default of dimensions parameter to be empty dict
2015-10-07 13:54:00 +11:00
James Cammarata
a3e7f5cfcc
Merge pull request #2062 from wimnat/feature/iam_policy_doc_fix
...
Update iam_policy.py doc and state default parameter
2015-10-05 16:53:14 -04:00
Gerard Lynch
8b1ee3d6cb
minor doc fix
2015-10-04 17:32:12 +01:00
Brian Coca
da220e0bb0
added version_added
2015-10-01 00:13:58 -04:00
Alex Kessinger
4308ae25c4
Fix a argument mismatch in elasticache
...
I think in this commit 720aeffca2
There was bug introduced where the ElastiCacheManager init method has
a number of positional arguments like so.
```py
def __init__(self, module, name, engine, cache_engine_version, node_type,
num_nodes, cache_port, parameter_group, cache_subnet_group,
cache_security_groups, security_group_ids, zone, wait,
hard_modify, region, **aws_connect_kwargs):
```
But then later in the code the positional arguments are passed in
like this.
```py
elasticache_manager = ElastiCacheManager(module, name, engine,
cache_engine_version, node_type,
num_nodes, cache_port,
cache_subnet_group,
cache_security_groups,
security_group_ids, parameter_group, zone, wait,
hard_modify, region, **aws_connect_kwargs)
```
If you count, you can see that cache_subnet_group, is being passed in
where the manager expects to see parameter_group.
2015-09-29 16:51:26 -07:00
Brian Coca
653b55bf68
Merge pull request #2160 from j-carl/fix_amazon-cloudformation-userdir
...
Fix to handle user directory within parameter 'template'.
2015-09-28 15:23:19 -04:00
Jens Carl
dc109387bd
Change type of parameter 'template' to 'path'.
2015-09-28 18:25:23 +00:00
Shayne Clausson
841835ebac
Replaces 'old' get_ec2_creds connection method with get_aws_connection_info to
...
support passing in security_token for temporary creds.
2015-09-28 19:50:02 +02:00
Toshio Kuratomi
a4ac171a07
Merge pull request #2124 from halberom/ec2_adjust_vol_handling
...
ec2 - allow use of volume_type in volumes dict
2015-09-28 09:04:12 -07:00
Gerard Lynch
1857263b63
allow use of volume_type in volumes dict
2015-09-28 17:02:46 +01:00
Toshio Kuratomi
d5f62798f0
Docs fixes
2015-09-28 08:22:36 -07:00
Toshio Kuratomi
6cad03644f
Merge pull request #2130 from shawnsilva/modify-rds-size
...
Fix for modifying the size of an RDS instance.
2015-09-28 07:38:43 -07:00
Toshio Kuratomi
3b5f232d4d
Merge pull request #2143 from atplanet/ec2-ami-mod-clarify-block-device-mapping
...
Clarify available options for device_mapping parameter of ec2_ami module
2015-09-28 07:28:08 -07:00
Jens Carl
e25605cd5b
Fix to handle user directory within parameter 'template'.
2015-09-25 21:59:14 +00:00
Tom Bamford
4e1d28e311
Clarify available options for device_mapping parameter of ec2_ami module
2015-09-24 12:37:03 +00:00
Shawn Silva
ba8930c83a
Fix for modifying the size of an RDS instance.
...
When attempting to modify the size of an RDS instance Ansible succeeds and
returns a "changed" status. However, no changes are applied to the RDS
instance. Boto is looking for a keyword parameter of "allocated_storage" to
update the size, and this parameter wasn't being included.
2015-09-22 10:46:20 -04:00
Selivanov Pavel
ec24a86f69
ec2_group.py: added ICMP rule example
2015-09-22 16:56:13 +03:00
Brian Coca
8b7e692494
Merge pull request #1353 from awesomescot/devel
...
adding parameter group option
2015-09-21 08:31:40 -04:00
EC
9168ed4736
Fixing ec2_asg termination_policy
...
If this isnt set, it wont launch the instances because it needs to default to "Default" despite what boto docs say.
2015-09-17 15:47:16 -04:00
Rob
9bf0d06e4a
Update iam_policy.py
...
Fixed doc for policy_name - it is a required field
Removed empty aliases
2015-09-17 17:52:42 +10:00
Gerard Lynch
3d12e53a28
order params, add missing tag param. update examples
2015-09-16 11:29:36 +01:00
whiter
719f68e057
Remove 'str' type so that json is properly quoted
2015-09-16 17:52:43 +10:00
Toshio Kuratomi
636eecf354
Fix improper indentation
2015-09-15 14:25:22 -07:00
Brian Coca
367b4f07a1
Merge pull request #2047 from tomfotherby/patch-1
...
Allow load_balancer_port as a Ansible variable
2015-09-15 11:15:36 -04:00
Brian Coca
4a8a54950c
Merge pull request #2067 from wimnat/feature/issue-2066
...
Add exception handling to iam
2015-09-15 10:46:26 -04:00
James Cammarata
8125ae624a
Merge pull request #2075 from evanccnyc/ec2_asgfix
...
fixing termination policies for ec2_asg
2015-09-15 10:29:34 -04:00
Evan Carter
2e84bb9c99
fixing termination policies for ec2_asg
2015-09-14 18:31:22 -04:00
Brian Coca
8a7946b91d
Merge pull request #2064 from wimnat/feature/issue-2063
...
Remove unnecessary json.loads
2015-09-14 16:46:34 -04:00
Evan Carter
70ed99ec26
Fixing bug #2058 and adding some backwards compatibility
2015-09-14 11:27:37 -04:00
Frank van Tol
a7667fcaf2
Update s3.py
...
We are copying from S3, the bucket is the source, not the target.
2015-09-14 15:57:48 +02:00
Rob
da29956f03
Add exception handling to iam
2015-09-14 15:43:49 +10:00
wimnat
8e9c85bed2
Remove unnecessary json.loads
2015-09-14 14:23:34 +10:00
Tom Fotherby
54ae73b1a3
Fix #1984 - allow load_balancer_port as a variable
2015-09-10 17:34:38 +01:00
Brian Coca
05c3b3ea15
minor doc fix
2015-09-10 09:07:59 -04:00
Brian Coca
951f5807b9
Merge pull request #2028 from rosmo/s3-permissions
...
Added option to set multiple ACLs for S3 objects
2015-09-09 08:40:30 -04:00
Taneli Lepp
15f4b59619
Added option to set multiple ACLs for S3 objects. Also verifies the
...
selected permissions against Boto's canned ACL strings list.
2015-09-08 20:00:14 +03:00