Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

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