I found my issue. In my docker-compose file, I have the following:
environment:
- CF_API_EMAIL=${CLOUDFLARE_EMAIL}
- CF_API_KEY=${CLOUDFLARE_API_KEY}
In my .env file, I have CLOUDFLARE_EMAIL
as "name@domain.com"
. I tried name\@domain.com
to see if escaping the "@" worked, and it turns out I needed to not escape it nor use double-quotes which worked previously.
`