Skip to content
This repository has been archived by the owner on Feb 11, 2020. It is now read-only.

Make the environment variables length a static variable

Compare
Choose a tag to compare
@kenoir kenoir released this 15 Dec 14:11
· 433 commits to master since this release

Work around a bug where Terraform can't count.

See hashicorp/terraform#10857

Service now requires an env_vars_length param:

module "service" {
  // ...
  env_vars_length = 2
  env_vars = {
    my_var = "foo"
    another_var = "bar"
  }
}