1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
variable "prefix_name" {
description = "Common prefix to use when naming resources, ensures unicity of the s3 bucket name."
type = string
}
variable "base_name" {
description = "Common name to use when naming resources."
type = string
}
variable "region" {
description = "Region in which to create resources."
type = string
}
variable "create_antispam_db" {
description = "Set to true to create another database to be used by the antispam implementation."
type = bool
default = false
}
variable "ephemeral" {
description = "Set to true if this is a throwaway/temporary log instance. Will set attributes on created resources to allow them to be disabled/deleted more easily."
type = bool
default = true
}
|