12 lines
231 B
Terraform
12 lines
231 B
Terraform
|
variable "name" {
|
||
|
description = "Name of our Application"
|
||
|
type = string
|
||
|
default = "lab-1-app"
|
||
|
}
|
||
|
|
||
|
variable "environment" {
|
||
|
description = "The deployment environment"
|
||
|
type = string
|
||
|
default = "dev"
|
||
|
}
|