We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff49068 commit 60bd9aaCopy full SHA for 60bd9aa
roles/infrastructure/tasks/setup_aws_storage.yml
@@ -52,7 +52,7 @@
52
loop: "{{ infra__aws_storage_locations }}"
53
54
- name: Update AWS Buckets tags (overwrite)
55
- when: __infra_aws_storage_tags_list
+ when: __infra_aws_storage_tags_list is defined
56
ansible.builtin.command: >
57
aws s3api put-bucket-tagging
58
--bucket {{ __infra_aws_storage_location_item.bucket }}
@@ -72,7 +72,7 @@
72
permission: private
73
74
- name: Update Download Mirror Buckets tags (overwrite)
75
- when: infra__create_utility_service and __infra_aws_storage_tags_list
+ when: infra__create_utility_service and __infra_aws_storage_tags_list is defined
76
77
78
--bucket {{ infra__utlity_bucket_name }}
0 commit comments