variables.tf 144 B

1234567
  1. variable "lambdas" {
  2. description = "Name and tag for lambdas to download."
  3. type = list(object({
  4. name = string
  5. tag = string
  6. }))
  7. }