forked from kiwicom/terraform-aws-ftp-transfer-user
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
43 lines (35 loc) · 1009 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
42
43
variable "username" {
type = string
description = "Name of the user that will be created in shared sftp."
}
variable "ssh_public_keys" {
type = list(string)
description = "List of raw SSH public keys."
}
variable "ssh_public_keys_length" {
default = 0
}
variable "transfer_server_id" {
type = string
description = "ID of the transfer server to use."
}
variable "s3_bucket_name" {
type = string
description = "Name of the AWS S3 Bucket where sftp user should have access to."
}
variable "s3_bucket_folder" {
type = string
default = ""
description = "If provided, user will have access only to given folder instead of entire bucket."
}
variable "access_type" {
type = string
description = "Which permissions user should have on sftp"
}
variable "iam_name" {
type = string
}
variable "transfer_server_enable_password_auth" {
description = "Boolean for whether this transfer server uses password auth"
default = false
}