Amazon ECS · Schema

LogConfiguration

AmazonAwsContainersDockerEcsOrchestration

Properties

Name Type Description
logDriver string The log driver to use for the container.
options object The configuration options to send to the log driver.
secretOptions array The secrets to pass to the log driver configuration.
View JSON Schema on GitHub

JSON Schema

amazon-ecs-log-configuration-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "LogConfiguration",
  "type": "object",
  "properties": {
    "logDriver": {
      "type": "string",
      "description": "The log driver to use for the container."
    },
    "options": {
      "type": "object",
      "description": "The configuration options to send to the log driver."
    },
    "secretOptions": {
      "type": "array",
      "description": "The secrets to pass to the log driver configuration."
    }
  }
}