-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
57 lines (40 loc) · 1.48 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
54
55
56
57
###################################################################################################
terraform {
required_version = ">= 0.11.0"
}
###################################################################################################
variable "integration_name" {}
variable "integration_bucket" {
type = "map"
}
variable "function_prefix" {
default = "s3-sftp-bridge"
}
variable "service_tag" {}
###################################################################################################
variable "ssh_key_path" {}
variable "ssh_key_file" {}
variable "ssh_host_key_path" {}
variable "ssh_host_key_file" {}
variable "security_groups" { default = [] }
variable "subnets" { default = [] }
###################################################################################################
# variable "lambda_function_package_path" {}
variable "lambda_description" {
default = "Managed by Terraform"
}
###################################################################################################
variable "sftp_host" {}
variable "sftp_user" {}
variable "sftp_location" {}
variable "sftp_port" {
default = "22"
}
###################################################################################################
variable "retry_schedule_expression" {
default = "cron(0/5 * * * ? *)"
}
variable "retry_scheduled_event_description" {
default = "Managed by Terraform"
}
###################################################################################################