2022-09-05 13:52:21 +08:00
|
|
|
/*
|
2021-01-26 21:40:02 +08:00
|
|
|
variable "customer-name" {}
|
|
|
|
variable "environment" {}
|
|
|
|
variable "project" {}
|
|
|
|
variable "application" {}
|
2022-09-05 13:52:21 +08:00
|
|
|
*/
|
|
|
|
variable resource-prefix {}
|
2021-01-26 21:40:02 +08:00
|
|
|
variable "default-tags" {}
|
2021-01-27 09:42:51 +08:00
|
|
|
variable "cloudtrail-retain-days" {
|
|
|
|
type = number
|
|
|
|
default = 90
|
|
|
|
}
|
|
|
|
|
2022-09-05 13:52:21 +08:00
|
|
|
data aws_region this-region {}
|
|
|
|
|
2021-01-26 21:40:02 +08:00
|
|
|
locals {
|
2022-09-05 13:52:21 +08:00
|
|
|
ct-bucket-name = "${var.resource-prefix}-ctbucket-${data.aws_caller_identity.this.account_id}"
|
2021-01-26 21:40:02 +08:00
|
|
|
}
|
|
|
|
|