Skip to content

Commit

Permalink
aws_s3/test: keep length of name below 63 char (#372)
Browse files Browse the repository at this point in the history
aws_s3/test: keep length of name below 63 char

Reviewed-by: https://github.com/apps/ansible-zuul
  • Loading branch information
goneri authored Jun 1, 2021
1 parent b9b52eb commit 8c39dc0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/targets/aws_s3/defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
# defaults file for s3
bucket_name: '{{ resource_prefix }}'
bucket_name_acl: '{{ bucket_name }}-with-acl'
bucket_name: '{{ resource_prefix | hash("md5") }}'
bucket_name_acl: "{{ bucket_name + '-with-acl' }}"

0 comments on commit 8c39dc0

Please sign in to comment.