there, I have already an environment variable setup in ECS task definition as shown in the screenshot. And I was supposing that I could simply treat it as an regular env and read it like this in Spring:
@Value("${activeDirectoryPwd}")
private String adPwd;
but somehow the variable adPwd comes back null. Do I have to read it differently?