11 lines
236 B
Terraform
11 lines
236 B
Terraform
variable "project_name" {
|
|
description = "Short name of the fictional project."
|
|
type = string
|
|
default = "quantum"
|
|
}
|
|
|
|
variable "environment" {
|
|
description = "Fictional application environment."
|
|
type = string
|
|
}
|