-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
53 lines (41 loc) · 1.17 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
variable "default_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to all AWS resources created by this module.
EOS
}
variable "force_destroy" {
type = string
default = false
description = <<EOS
Whether the deletion of the buckets created by this module will enforce the deletion of all objects.
If this option is set to `false` and the buckets are not empty the deletion of the buckets will fail.
EOS
}
variable "primary_name" {
type = string
description = <<EOS
Name of bucket in created via the `aws.primary` AWS provider.
EOS
}
variable "primary_s3_bucket_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to the primary S3 bucket created by this module. Tags in this map will override tags in `var.default_tags`.
EOS
}
variable "secondary_name" {
type = string
description = <<EOS
Name of bucket in created via the `aws.secondary` AWS provider.
EOS
}
variable "secondary_s3_bucket_tags" {
type = map(string)
default = {}
description = <<EOS
Map of tags assigned to the secondary S3 bucket created by this module. Tags in this map will override tags in `var.default_tags`.
EOS
}