-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariable.tf
More file actions
40 lines (34 loc) · 1.03 KB
/
variable.tf
File metadata and controls
40 lines (34 loc) · 1.03 KB
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
variable "s3_bucket_name" {
type = string
description = "The bucket name"
}
variable "s3_bucket_versioning" {
type = bool
description = "Enable bucket versioning"
}
variable "server_name" {
type = string
description = "Specifies the name of the SFTP server"
}
variable "security_policy_name" {
type = string
description = "Specifies the name of the security policy that is attached to the server. Possible values are TransferSecurityPolicy-2018-11, TransferSecurityPolicy-2020-06, and TransferSecurityPolicy-FIPS-2020-06. Default value is: TransferSecurityPolicy-2018-11."
default = "TransferSecurityPolicy-2018-11"
}
variable "sftp_users" {
type = list
default = []
description = "List of SFTP usernames"
}
variable "domain_zone" {
type = string
description = "Hosted Zone name of the desired Hosted Zone"
}
variable "domain_host" {
type = string
description = "The name of the Route 53 record"
}
variable "account_name" {
type = string
description = "The account or environment name"
}