Last active
September 12, 2022 14:42
-
-
Save apr-1985/141928d583542a3b3d303e43b757292c to your computer and use it in GitHub Desktop.
medium: Terraform Optional Attributes and Defaults - variable object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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