From 7e2d5d3a2e66eebf62d7ebc5f81b79288f50e55a Mon Sep 17 00:00:00 2001 From: Steven Pitts <25968054+stevenpitts@users.noreply.github.com> Date: Thu, 27 Jan 2022 16:58:42 -0500 Subject: [PATCH] Fix x-aws-keys field name The current documentation suggests listing SecretsManager secret JSON keys in a `keys` field, but this is not correct. The correct field is `x-aws-keys`. The `keys` field as written is not supported by the [compose spec](https://github.com/compose-spec/compose-spec/blob/master/spec.md), and attempting most `docker compose` commands would result in failure if one named the field as written. --- cloud/ecs-integration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud/ecs-integration.md b/cloud/ecs-integration.md index 397370cad1..c5106241d2 100644 --- a/cloud/ecs-integration.md +++ b/cloud/ecs-integration.md @@ -370,7 +370,7 @@ services: secrets: foo: name: "arn:aws:secretsmanager:eu-west-3:1234:secret:foo-ABC123" - keys: + x-aws-keys: - "bar" ```