-
Notifications
You must be signed in to change notification settings - Fork 43
/
variables.tf
58 lines (48 loc) · 1.27 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
variable "api_dist" {
description = "Location of the API distribution"
type = string
default = "build/libs/online-payments-0.0.1-SNAPSHOT"
}
variable "namespace" {
description = "Namespace of the deployment"
type = string
default = "adyen-spring"
}
variable "environment" {
description = "Environment of the deployment"
type = string
default = "development"
}
# ----
# AWS Settings
variable "aws_profile" {
description = "AWS Profile tu use for deployment"
type = string
default = "default"
}
variable "aws_region" {
description = "AWS Region to use for deployment"
type = string
default = "eu-west-1"
}
# -----
# Adyen credentials
variable "adyen_client_key" {
type = string
description = "Client Key from our Adyen account for this application"
sensitive = true
}
variable "adyen_api_key" {
type = string
description = "API Key from our Adyen account for this application"
sensitive = true
}
variable "adyen_hmac_key" {
type = string
description = "HMAC Key from our Adyen account for this application"
sensitive = true
}
variable "adyen_merchant_account" {
type = string
description = "Adyen Merchant Account to use for this application"
}