diff --git a/changelogs/fragments/20230502-s3_object-permission.yml b/changelogs/fragments/20230502-s3_object-permission.yml new file mode 100644 index 00000000000..c50fabf9b85 --- /dev/null +++ b/changelogs/fragments/20230502-s3_object-permission.yml @@ -0,0 +1,2 @@ +trivial: +- "Comment on permission because of botocore.exceptions.ClientError: An error occurred (AccessControlListNotSupported) when calling the PutObject operation: The bucket does not allow ACLs." diff --git a/tests/integration/targets/lambda_layer/tasks/main.yml b/tests/integration/targets/lambda_layer/tasks/main.yml index 3cc8dbb085b..227a58dc343 100644 --- a/tests/integration/targets/lambda_layer/tasks/main.yml +++ b/tests/integration/targets/lambda_layer/tasks/main.yml @@ -45,7 +45,7 @@ bucket: "{{ s3_bucket_name }}" mode: put object: "{{ s3_bucket_object }}" - permission: public-read + # permission: public-read # Commented on because botocore.exceptions.ClientError: An error occurred (AccessControlListNotSupported) when calling the PutObject operation: The bucket does not allow ACLs src: "{{ zip_file_path }}" - name: Create lambda layer (check_mode=true)