mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-02 16:53:11 +00:00
Fix typo in rds_subnet_group.py
aws_connection_kwargs should be aws_connect_kwargs
This commit is contained in:
@@ -116,7 +116,7 @@ def main():
|
||||
module.fail_json(msg = str("Either region or AWS_REGION or EC2_REGION environment variable or boto config aws_region or ec2_region must be set."))
|
||||
|
||||
try:
|
||||
conn = boto.rds.connect_to_region(region, **aws_connection_kwargs)
|
||||
conn = boto.rds.connect_to_region(region, **aws_connect_kwargs)
|
||||
except boto.exception.BotoServerError, e:
|
||||
module.fail_json(msg = e.error_message)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user