feat: updated root module skeleton template
This commit is contained in:
+20
-5
@@ -1,5 +1,20 @@
|
||||
variable "aws-region" {}
|
||||
variable "customer-name" {}
|
||||
variable "environment" {}
|
||||
variable "project" {}
|
||||
variable "application" {}
|
||||
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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user