putting a var inside "template expression" in task

hi
i know that the way i put it here it wont work
but what is the proper way to do it? put {{ COUNT }} variable inside bucket_ram_quota: “{{ ( 800 / {{ COUNT }} ) | int }}”

thanks

You already have curly brackets, so remove the ones inside.

   bucket_ram_quota: "{{ ( 800 / COUNT ) | int }}"