Coder Social home page Coder Social logo

Comments (1)

korenyoni avatar korenyoni commented on May 20, 2024

@aairey How are you producing this?

I've supplied null to container_cpu in fixtures.us-east-2.tfvars in examples/complete and can produce a clean plan:

region = "us-east-2"

namespace = "eg"

stage = "test"

name = "container-definition"

container_name               = "app"
container_image              = "cloudposse/geodesic"
container_memory             = 256
container_memory_reservation = 128
#container_cpu                = 256
container_cpu                = null
essential                    = true
readonly_root_filesystem     = false

container_environment = [
  {
    name  = "string_var"
    value = "I am a string"
  },
  {
    name  = "true_boolean_var"
    value = true
  },
  {
    name  = "false_boolean_var"
    value = false
  },
  {
    name  = "integer_var"
    value = 42
  }
]

port_mappings = [
  {
    containerPort = 8080
    hostPort      = 80
    protocol      = "tcp"
  },
  {
    containerPort = 8081
    hostPort      = 443
    protocol      = "udp"
  }
]

log_configuration = {
  logDriver = "json-file"
  options = {
    "max-size" = "10m"
    "max-file" = "3"
  }
  secretOptions = null
}

privileged = false

extra_hosts = [{
  ipAddress = "127.0.0.1"
  hostname  = "app.local"
  },
]

hostname        = "hostname"
pseudo_terminal = true
interactive     = true

Terraform 0.13.7

examples/complete $ terraform plan -var-file fixtures.us-east-2.tfvars
Terraform used the selected providers to generate the following execution plan. Resource actions are indicated with the following symbols:
  + create

Terraform will perform the following actions:

  # aws_ecs_task_definition.task will be created
  + resource "aws_ecs_task_definition" "task" {
      + arn                   = (known after apply)
      + container_definitions = jsonencode(
            [
              + {
                  + environment            = [
                      + {
                          + name  = "false_boolean_var"
                          + value = "false"
                        },
                      + {
                          + name  = "integer_var"
                          + value = "42"
                        },
                      + {
                          + name  = "string_var"
                          + value = "I am a string"
                        },
                      + {
                          + name  = "true_boolean_var"
                          + value = "true"
                        },
                    ]
                  + essential              = true
                  + extraHosts             = [
                      + {
                          + hostname  = "app.local"
                          + ipAddress = "127.0.0.1"
                        },
                    ]
                  + hostname               = "hostname"
                  + image                  = "cloudposse/geodesic"
                  + interactive            = true
                  + logConfiguration       = {
                      + logDriver = "json-file"
                      + options   = {
                          + max-file = "3"
                          + max-size = "10m"
                        }
                    }
                  + memory                 = 256
                  + memoryReservation      = 128
                  + mountPoints            = []
                  + name                   = "app"
                  + portMappings           = [
                      + {
                          + containerPort = 8080
                          + hostPort      = 80
                          + protocol      = "tcp"
                        },
                      + {
                          + containerPort = 8081
                          + hostPort      = 443
                          + protocol      = "udp"
                        },
                    ]
                  + privileged             = false
                  + pseudoTerminal         = true
                  + readonlyRootFilesystem = false
                  + volumesFrom            = []
                },
            ]
        )
      + family                = "eg-test-container-definition"
      + id                    = (known after apply)
      + network_mode          = (known after apply)
      + revision              = (known after apply)
      + skip_destroy          = false
      + tags                  = {
          + "Name"      = "eg-test-container-definition"
          + "Namespace" = "eg"
          + "Stage"     = "test"
        }
      + tags_all              = {
          + "Name"      = "eg-test-container-definition"
          + "Namespace" = "eg"
          + "Stage"     = "test"
        }
    }

Plan: 1 to add, 0 to change, 0 to destroy.

Changes to Outputs:
  + json_map_encoded                     = jsonencode(
        {
          + environment            = [
              + {
                  + name  = "false_boolean_var"
                  + value = "false"
                },
              + {
                  + name  = "integer_var"
                  + value = "42"
                },
              + {
                  + name  = "string_var"
                  + value = "I am a string"
                },
              + {
                  + name  = "true_boolean_var"
                  + value = "true"
                },
            ]
          + essential              = true
          + extraHosts             = [
              + {
                  + hostname  = "app.local"
                  + ipAddress = "127.0.0.1"
                },
            ]
          + hostname               = "hostname"
          + image                  = "cloudposse/geodesic"
          + interactive            = true
          + logConfiguration       = {
              + logDriver = "json-file"
              + options   = {
                  + max-file = "3"
                  + max-size = "10m"
                }
            }
          + memory                 = 256
          + memoryReservation      = 128
          + mountPoints            = []
          + name                   = "app"
          + portMappings           = [
              + {
                  + containerPort = 8080
                  + hostPort      = 80
                  + protocol      = "tcp"
                },
              + {
                  + containerPort = 8081
                  + hostPort      = 443
                  + protocol      = "udp"
                },
            ]
          + privileged             = false
          + pseudoTerminal         = true
          + readonlyRootFilesystem = false
          + volumesFrom            = []
        }
    )
  + json_map_encoded_list                = jsonencode(
        [
          + {
              + environment            = [
                  + {
                      + name  = "false_boolean_var"
                      + value = "false"
                    },
                  + {
                      + name  = "integer_var"
                      + value = "42"
                    },
                  + {
                      + name  = "string_var"
                      + value = "I am a string"
                    },
                  + {
                      + name  = "true_boolean_var"
                      + value = "true"
                    },
                ]
              + essential              = true
              + extraHosts             = [
                  + {
                      + hostname  = "app.local"
                      + ipAddress = "127.0.0.1"
                    },
                ]
              + hostname               = "hostname"
              + image                  = "cloudposse/geodesic"
              + interactive            = true
              + logConfiguration       = {
                  + logDriver = "json-file"
                  + options   = {
                      + max-file = "3"
                      + max-size = "10m"
                    }
                }
              + memory                 = 256
              + memoryReservation      = 128
              + mountPoints            = []
              + name                   = "app"
              + portMappings           = [
                  + {
                      + containerPort = 8080
                      + hostPort      = 80
                      + protocol      = "tcp"
                    },
                  + {
                      + containerPort = 8081
                      + hostPort      = 443
                      + protocol      = "udp"
                    },
                ]
              + privileged             = false
              + pseudoTerminal         = true
              + readonlyRootFilesystem = false
              + volumesFrom            = []
            },
        ]
    )
  + json_map_object                      = {
      + environment            = [
          + {
              + name  = "false_boolean_var"
              + value = "false"
            },
          + {
              + name  = "integer_var"
              + value = "42"
            },
          + {
              + name  = "string_var"
              + value = "I am a string"
            },
          + {
              + name  = "true_boolean_var"
              + value = "true"
            },
        ]
      + essential              = true
      + extraHosts             = [
          + {
              + hostname  = "app.local"
              + ipAddress = "127.0.0.1"
            },
        ]
      + hostname               = "hostname"
      + image                  = "cloudposse/geodesic"
      + interactive            = true
      + logConfiguration       = {
          + logDriver = "json-file"
          + options   = {
              + max-file = "3"
              + max-size = "10m"
            }
        }
      + memory                 = 256
      + memoryReservation      = 128
      + mountPoints            = []
      + name                   = "app"
      + portMappings           = [
          + {
              + containerPort = 8080
              + hostPort      = 80
              + protocol      = "tcp"
            },
          + {
              + containerPort = 8081
              + hostPort      = 443
              + protocol      = "udp"
            },
        ]
      + privileged             = false
      + pseudoTerminal         = true
      + readonlyRootFilesystem = false
      + volumesFrom            = []
    }
  + task_definition_container_definition = {
      + environment            = [
          + {
              + name  = "false_boolean_var"
              + value = "false"
            },
          + {
              + name  = "integer_var"
              + value = "42"
            },
          + {
              + name  = "string_var"
              + value = "I am a string"
            },
          + {
              + name  = "true_boolean_var"
              + value = "true"
            },
        ]
      + essential              = true
      + extraHosts             = [
          + {
              + hostname  = "app.local"
              + ipAddress = "127.0.0.1"
            },
        ]
      + hostname               = "hostname"
      + image                  = "cloudposse/geodesic"
      + interactive            = true
      + logConfiguration       = {
          + logDriver = "json-file"
          + options   = {
              + max-file = "3"
              + max-size = "10m"
            }
        }
      + memory                 = 256
      + memoryReservation      = 128
      + mountPoints            = []
      + name                   = "app"
      + portMappings           = [
          + {
              + containerPort = 8080
              + hostPort      = 80
              + protocol      = "tcp"
            },
          + {
              + containerPort = 8081
              + hostPort      = 443
              + protocol      = "udp"
            },
        ]
      + privileged             = false
      + pseudoTerminal         = true
      + readonlyRootFilesystem = false
      + volumesFrom            = []
    }

───────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────

Note: You didn't use the -out option to save this plan, so Terraform can't guarantee to take exactly these actions if you run "terraform apply" now.

Terraform 1.1.2

examples/complete $ terraform plan -var-file fixtures.us-east-2.tfvars
Refreshing Terraform state in-memory prior to plan...
The refreshed state will be used to calculate this plan, but will not be
persisted to local or remote state storage.


------------------------------------------------------------------------

An execution plan has been generated and is shown below.
Resource actions are indicated with the following symbols:
  + create

Terraform will perform the following actions:

  # aws_ecs_task_definition.task will be created
  + resource "aws_ecs_task_definition" "task" {
      + arn                   = (known after apply)
      + container_definitions = jsonencode(
            [
              + {
                  + environment            = [
                      + {
                          + name  = "false_boolean_var"
                          + value = "false"
                        },
                      + {
                          + name  = "integer_var"
                          + value = "42"
                        },
                      + {
                          + name  = "string_var"
                          + value = "I am a string"
                        },
                      + {
                          + name  = "true_boolean_var"
                          + value = "true"
                        },
                    ]
                  + essential              = true
                  + extraHosts             = [
                      + {
                          + hostname  = "app.local"
                          + ipAddress = "127.0.0.1"
                        },
                    ]
                  + hostname               = "hostname"
                  + image                  = "cloudposse/geodesic"
                  + interactive            = true
                  + logConfiguration       = {
                      + logDriver = "json-file"
                      + options   = {
                          + max-file = "3"
                          + max-size = "10m"
                        }
                    }
                  + memory                 = 256
                  + memoryReservation      = 128
                  + mountPoints            = []
                  + name                   = "app"
                  + portMappings           = [
                      + {
                          + containerPort = 8080
                          + hostPort      = 80
                          + protocol      = "tcp"
                        },
                      + {
                          + containerPort = 8081
                          + hostPort      = 443
                          + protocol      = "udp"
                        },
                    ]
                  + privileged             = false
                  + pseudoTerminal         = true
                  + readonlyRootFilesystem = false
                  + volumesFrom            = []
                },
            ]
        )
      + family                = "eg-test-container-definition"
      + id                    = (known after apply)
      + network_mode          = (known after apply)
      + revision              = (known after apply)
      + skip_destroy          = false
      + tags                  = {
          + "Name"      = "eg-test-container-definition"
          + "Namespace" = "eg"
          + "Stage"     = "test"
        }
      + tags_all              = {
          + "Name"      = "eg-test-container-definition"
          + "Namespace" = "eg"
          + "Stage"     = "test"
        }
    }

Plan: 1 to add, 0 to change, 0 to destroy.

------------------------------------------------------------------------

Note: You didn't specify an "-out" parameter to save this plan, so Terraform
can't guarantee that exactly these actions will be performed if
"terraform apply" is subsequently run.

That additional information that's useful for bug reports such as these is included in our issue template... looks like you didn't use it.

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.