Coder Social home page Coder Social logo

Comments (7)

charlieparkes avatar charlieparkes commented on June 1, 2024

I've been struggling with this for a month or so. Any suggestions would be welcome.

  log_driver  = "json-file"
  log_options = {
    "max-size" = "10m"
    "max-file" = "3"
  }

module.ecs-service.aws_ecs_task_definition.task_definition: ECS Task Definition container_definitions is invalid: Error decoding JSON: json: cannot unmarshal number into Go struct field LogConfiguration.Options of type string

from terraform-aws-ecs-container-definition.

smiller171 avatar smiller171 commented on June 1, 2024

I'm running into the same problem. This feels like an AWS provider bug since a jsonencode is already being done...

from terraform-aws-ecs-container-definition.

smiller171 avatar smiller171 commented on June 1, 2024

I found a super shitty workaround Nevermind, this didn't work on apply

log_options = {
    "awslogs-create-group" = <<EOF
\"true\"
EOF
  }

from terraform-aws-ecs-container-definition.

ReddytoRumble avatar ReddytoRumble commented on June 1, 2024

@smiller171 @alphachai Did you end up finding a workaround? I'm running into this as well

from terraform-aws-ecs-container-definition.

smiller171 avatar smiller171 commented on June 1, 2024

I think I ended up just not using this module, but with Terraform 0.12+ maybe you can make the type explicit.

from terraform-aws-ecs-container-definition.

charlieparkes avatar charlieparkes commented on June 1, 2024

@ReddytoRumble this is working for me right now

module "container_definition" {
  source = "github.com/cloudposse/terraform-aws-ecs-container-definition?ref=0.13.0"

  container_name               = "${local.name}"
  container_image              = "${aws_ecr_repository.foobar.repository_url}"
  container_cpu                = "${local.foobar_cpu}"
  container_memory             = 0
  container_memory_reservation = "${local.foobar_memory_reservation}"

  port_mappings = [
    {
      containerPort = "${local.port}"
    },
  ]

  environment = [
    ...
  ]

  log_driver = "json-file"

  log_options = {
    "max-size" = "50m"
  }
}

I don't want to just say "it's working now," since I'm not sure what's different between what I'm doing now and what was happening before.

from terraform-aws-ecs-container-definition.

tisted-digitalis avatar tisted-digitalis commented on June 1, 2024

its still an issue,

"max-size" = "50m" - string
"max-file" = "3" - number

from terraform-aws-ecs-container-definition.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.