30 lines
599 B
HCL
30 lines
599 B
HCL
variable "aws_region" {
|
|
description = "The aws region to deploy in"
|
|
}
|
|
|
|
variable "name" {
|
|
description = "Name to be used on all the resources as identifier"
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "stack" {
|
|
description = "Environment stack"
|
|
default = "vsds"
|
|
}
|
|
|
|
variable "stage" {
|
|
description = "Environment stage"
|
|
}
|
|
|
|
variable "tags" {
|
|
description = "A map of tags to add to all resources"
|
|
type = map(string)
|
|
default = {}
|
|
}
|
|
|
|
variable "kms" {
|
|
description = "A map of kms keys to be used for any resources."
|
|
type = map(string)
|
|
default = {}
|
|
} |