Response code 400 when trying to set scale-in protection

0

I want to to set scale-in protection as explained here via a PUT request to $ECS_AGENT_URI/task-protection/v1/state.

However, I always get the following error: Response code 400 (Bad Request) .

This is my code:

const got = require("got");

const SCALE_IN_PROTECTION_DURATION_MINUTES = 15;
const TASK_PROTECTION_URI = `${process.env.ECS_AGENT_URI}/task-protection/v1/state`;
try {
  const minutes = SCALE_IN_PROTECTION_DURATION_MINUTES;
  await got(TASK_PROTECTION_URI, {
    method: "PUT",
    json: { ProtectionEnabled: true, ExpiresInMinutes: minutes },
  });
} catch (error) {
  logger.error(error);
}

process.env.ECS_AGENT_URI is set properly and the instance agent version is 1.70.0

flo
已提问 1 年前361 查看次数
1 回答
0
已接受的回答

The code was correct. The solution was to add the ecs:UpdateTaskProtection permission to my ECS task as described here.

flo
已回答 1 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则