File: variables.tf

package info (click to toggle)
golang-github-transparency-dev-tessera 1.0.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 3,612 kB
  • sloc: sql: 33; sh: 17; makefile: 12
file content (26 lines) | stat: -rw-r--r-- 775 bytes parent folder | download | duplicates (3)
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
}