Sendinblue error in my new Scaleway cluster (+ Deployment error)

Issues information

Your issue
Hello,

I am facing an issue with the sendinblue API since I moved from AWS cluster to the Scaleway one.
It works perfectly locally, but I have a timeout error in production.
I checked the environment variables on the environment, everything is the same than what I have in local (both SMTP_KEY and API Key are well configured).

Could you help me to find out what can be the problem that causes this timeout error ?

Thank you in advance for the help,
Dan

@rophilogene have you any idea about this ?

Dockerfile content (if any)

`FROM node:16-alpine as build
ARG REACT_APP_API_URL
ENV REACT_APP_API_URL $REACT_APP_API_URL
ARG PUBLIC_URL
ENV PUBLIC_URL $PUBLIC_URL
WORKDIR /app
COPY ./client .

RUN npm install && npm run build

FROM nginx:latest
COPY --from=build /app/build /usr/share/nginx/html
COPY ./deployment/nginx-custom.conf /etc/nginx/conf.d/default.conf

EXPOSE 3000
CMD [“nginx”, “-g”, “daemon off;”]`

The problem was due to a security config that blocked a port needed by Sendinblue. I saw it with them :slight_smile: