-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvariables.tf
More file actions
47 lines (38 loc) · 790 Bytes
/
variables.tf
File metadata and controls
47 lines (38 loc) · 790 Bytes
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
# General
variable "aws_region" {
type = "string"
description = "Used AWS Region."
}
variable "aws_account" {
type = "string"
description = "Used AWS Account."
}
# Lambda
variable "lambda_service_role_name" {
type = "string"
description = "Lambda Service Role name."
}
variable "lambda_service_role_policy_name" {
type = "string"
description = "Lambda Service Role Policy name."
}
variable "lambda_function_name" {
type = "string"
description = "Lambda Function name."
}
# EKS
variable "eks_ca" {
type = "string"
}
variable "eks_cluster_host" {
type = "string"
}
variable "eks_cluster_name" {
type = "string"
}
variable "eks_cluster_user_name" {
type = "string"
}
variable "eks_token" {
type = "string"
}