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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
variable "prefix_name" {
description = "Common prefix to use when naming resources, ensures uniqueness 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 "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
}
variable "ecr_registry" {
description = "Container registry address, with the conformance and hammer repositories."
type = string
}
variable "ecr_repository_conformance" {
description = "Container repository for the conformance binary, with the tag."
type = string
}
variable "ecr_repository_hammer" {
description = "Container repository for the hammer binary, with the tag."
type = string
}
variable "signer" {
description = "The note signer which used to sign checkpoints."
type = string
}
variable "verifier" {
description = "The note verifier used to verify checkpoints."
type = string
}
variable "ecs_execution_role" {
description = "Role used to run the ECS task."
type = string
}
variable "ecs_conformance_task_role" {
description = "Role assumed by conformance containers when they run."
type = string
}
variable "antispam" {
description = "Set to true to enable antispam for this conformance log. If enabled, antispam_db_name must also be provided."
type = bool
default = false
}
variable "create_antispam_db" {
description = "Set to true to create a separate DB for the antispam data. This will not work from github actions."
type = bool
default = false
}
variable "antispam_db_name" {
description = "The name of the antispam database."
type = string
default = ""
}
|