21 lines
428 B
Terraform
21 lines
428 B
Terraform
variable "aws-region" {
|
|
description = "AWS Region"
|
|
type = string
|
|
}
|
|
variable "customer-name" {
|
|
description = "Resource owner"
|
|
type = string
|
|
}
|
|
variable "environment" {
|
|
description = "Environment i.e. Prod/Qa/Dev"
|
|
type = string
|
|
}
|
|
variable "project" {
|
|
description = "Name of project"
|
|
type = string
|
|
}
|
|
variable "application" {
|
|
description = "Name of application"
|
|
type = string
|
|
}
|