-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
41 lines (34 loc) · 968 Bytes
/
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
variable "source_region" {
type = string
description = "AWS region for the source bucket"
}
variable "dest_region" {
type = string
description = "AWS region for the destination bucket"
}
variable "source_bucket_name" {
type = string
description = "Name for source s3 bucket"
}
variable "replicate_prefix" {
type = string
description = "Prefix to replicate, default \"\" for all objects. Note if specifying, must end in a /"
default = ""
}
variable "dest_bucket_name" {
type = string
description = "Name for dest s3 bucket"
}
variable "create_dest_bucket" {
type = string
description = "Boolean for whether this module should create the destination bucket"
default = "true"
}
variable "replication_name" {
type = string
description = "Short name to describe this replication"
}
variable "priority" {
description = "The priority associated with the rule."
default = 0
}