-
Notifications
You must be signed in to change notification settings - Fork 0
/
-inputs.tf
86 lines (71 loc) · 2.12 KB
/
-inputs.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
variable "account_numbers" {
description = "Whitelisted account numbers to apply terraform code in. Can apply in any if left blank."
type = list(string)
default = []
}
variable "region" {
description = "AWS Region to target"
type = string
}
variable "access_key" {
description = "AWS access key"
type = string
default = ""
}
variable "secret_key" {
description = "AWS secret key"
type = string
default = ""
}
variable "token" {
description = "MFA Token retrieved with sts get-session-token"
type = string
default = ""
}
variable "aws_profile" {
description = "AWS Profile credentials to use"
type = string
default = ""
}
variable "name_prefix" {
description = "String to use as prefix on object names"
type = string
}
variable "prepend_name_suffix" {
description = "String to prepend to the name_suffix used on object names. This is optional, so start with dash if using like so: -mysuffix. This will result in prefix-objectname-mysuffix-env"
type = string
default = ""
}
variable "append_name_suffix" {
description = "String to append to the name_suffix used on object names. This is optional, so start with dash if using like so: -mysuffix. This will result in prefix-objectname-env-mysuffix"
type = string
default = ""
}
variable "override_name_suffix" {
description = "String to completely override the name_suffix"
type = string
default = ""
}
variable "env_name" {
description = "Environment name string to be used for decisions and name generation. Appended to name_suffix to create full_suffix"
type = string
}
variable "source_repo" {
description = "name of repo which holds this code"
type = string
}
variable "developer" {
description = "name of developer who has written this code"
type = string
}
variable "bucket_name" {
description = "name of bucket to create"
type = string
}
variable "repository_id" {
description = "name of bucket to create"
type = string
}
variable "lambda_function_name" {
default = "lambda_function_name"
}