Skip to content

Instantly share code, notes, and snippets.

@apr-1985
Last active September 12, 2022 14:42
Show Gist options
  • Select an option

  • Save apr-1985/141928d583542a3b3d303e43b757292c to your computer and use it in GitHub Desktop.

Select an option

Save apr-1985/141928d583542a3b3d303e43b757292c to your computer and use it in GitHub Desktop.
medium: Terraform Optional Attributes and Defaults - variable object
variable "lambdas" {
description = "Map of the Lambdas"
type = map(object({
lambda_name = string
lambda_entrypoint = string
timeout = optional(number)
lambda_runtime = optional(string)
lambda_memory_size = optional(number)
}))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment