特定のタスク定義のLogConfigurationを取得しようとしています。しかし、CloudFormationはそれを不平を続けているEncountered unsupported property logConfiguration
Amazon ECS LogConfigurationは「サポートされていないプロパティlogConfiguration」を返します
文書によると、それを使用することができるはずです。
"ContainerDefinitions" : [
{
"Name": "foo",
"PortMappings": [ ... code omitted ... ],
"logConfiguration" : {
"logDriver" : "fluentd",
"options" : {
"fluentd-address" : "foo:24224",
"tag" : "foobar"
}
},
}
]
任意の手掛かり私が何をしないのですか?
あなたがドッキングウィンドウの起動時に--log-ドライバオプションを指定していますデーモン? – Shibashis