Created
June 20, 2020 16:48
-
-
Save DanielDaCosta/9b4e9dae7c4fe0bb983d49bf2238e8c8 to your computer and use it in GitHub Desktop.
This file contains 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 "environment" { | |
description = "Env" | |
default = "dev" | |
} | |
variable "name" { | |
description = "Application Name" | |
type = string | |
} | |
locals { | |
description = "Aplication Name" | |
app_name = "${var.name}-${var.environment}" | |
} | |
variable "region" { | |
default = "us-east-1" | |
} | |
variable "lambda_name" { | |
description = "Name for lambda function" | |
default = "lambda" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment