2021-01-29 16:21:17 +08:00
|
|
|
variable "customer-name" {}
|
|
|
|
variable "environment" {}
|
|
|
|
variable "project" {}
|
|
|
|
variable "application" {}
|
|
|
|
variable "aws-region-short" {}
|
|
|
|
variable "default-tags" {}
|
|
|
|
|
|
|
|
locals {
|
|
|
|
resource-prefix = "${var.environment}-${var.aws-region-short}-${var.customer-name}-${var.project}"
|
|
|
|
}
|
|
|
|
|
2022-09-05 11:07:42 +08:00
|
|
|
variable config-retention-days {
|
|
|
|
type = number
|
|
|
|
default = 365
|
|
|
|
}
|