From 444b67ca0caf537bb7f642b0596790b4089fbfd2 Mon Sep 17 00:00:00 2001 From: "Joshua C. Randall" Date: Mon, 13 Mar 2017 14:29:14 +0000 Subject: [PATCH] s3_bucket: fixes #22464 without fully implementing support for ceph bucket update (#22538) --- lib/ansible/modules/cloud/amazon/s3_bucket.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/amazon/s3_bucket.py b/lib/ansible/modules/cloud/amazon/s3_bucket.py index 2c375c9bd1..4ed80836c1 100644 --- a/lib/ansible/modules/cloud/amazon/s3_bucket.py +++ b/lib/ansible/modules/cloud/amazon/s3_bucket.py @@ -434,7 +434,7 @@ def main(): state = module.params.get("state") if state == 'present': - create_or_update_bucket(connection, module, location) + create_or_update_bucket(connection, module, location, flavour=flavour) elif state == 'absent': destroy_bucket(connection, module, flavour=flavour)