-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
65 lines (55 loc) · 1.51 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
58
59
60
61
62
63
64
65
# Copyright (C) Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
variable "name" {
type = string
default = "redshift-copy-udf"
description = "Lambda UDF function name"
}
variable "memory_size" {
type = number
default = 128
description = "Lambda UDF memory size"
}
variable "timeout" {
type = number
default = 300
description = "Lambda UDF timeout"
}
variable "security_group_ids" {
type = string
default = null
description = "Security Group IDs (comma separated values)"
}
variable "vpc_subnet_ids" {
type = string
default = null
description = "VPC Subnet IDs (comma separated values)"
}
variable "storage_url" {
type = string
default = null
description = "Storage URL to Access S3 API Compliant Storage"
}
variable "storage_user" {
type = string
default = null
description = "Storage Username to Access S3 API Compliant Storage"
sensitive = true
}
variable "storage_pass" {
type = string
default = null
description = "Storage Password to Access S3 API Compliant Storage"
sensitive = true
}
variable "storage_token" {
type = string
default = null
description = "Storage Token to Access S3 API Compliant Storage (Optional)"
sensitive = true
}
variable "storage_secret_arn" {
type = string
default = null
description = "Secrets Manager ARN Holding Credentials to Access S3 API Compliant Storage (Optional)"
}