Skip to content

Instantly share code, notes, and snippets.

@DanielDaCosta
Created June 20, 2020 16:48
Show Gist options
  • Save DanielDaCosta/9b4e9dae7c4fe0bb983d49bf2238e8c8 to your computer and use it in GitHub Desktop.
Save DanielDaCosta/9b4e9dae7c4fe0bb983d49bf2238e8c8 to your computer and use it in GitHub Desktop.
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