terraform.aws-baseline-infra/modules/security_identity_compliance/aws_config/variables.tf

15 lines
340 B
Terraform
Raw Normal View History

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}"
}
variable config-retention-days {
type = number
default = 365
}