-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
53 lines (43 loc) · 1.13 KB
/
variables.tf
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
/*
* Copyright (c) 2019 Netic A/S. All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
variable "tags" {
description = "A map of tags to add to all resources"
default = {}
}
variable "bootstrap" {
description = "Whether to initialize the backend or not"
default = 0
}
variable "operator_role_arn" {
description = "ARN of role to use for running terraform"
}
variable "bucket" {
description = "Name of S3 bucket"
}
variable "key" {
description = "Name of S3 key"
}
variable "bucket_versioning_enabled" {
description = "Enable/disable bucket versioning"
default = true
}
variable "bucket_lifecycle_enabled" {
description = "Enable/disable bucket lifecycle"
default = true
}
variable "bucket_lifecycle_expiration_days" {
description = "Days to keep noncurrent versions before expiration"
default = 90
}
variable "bucket_logging" {
description = "Target bucket to use for logging"
type = list(map(any))
default = []
}
variable "dynamodb_table" {
description = "Name of DynamoDB table"
}