forked from aws-samples/amazon-eks-fsx-for-netapp-ontap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables-main.tf
46 lines (37 loc) · 895 Bytes
/
variables-main.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
variable "kubernetes_version" {
default = 1.21
description = "kubernetes version"
}
variable "creator" {
default = "lrico"
description = "AWS user owning resources"
}
variable "vpc_cidr" {
default = "10.0.0.0/16"
description = "default CIDR range of the VPC"
}
variable "vpcname" {
default = "bbva-main"
description = "default vpc name"
}
variable "aws_region" {
# default = "us-east-2"
default = "eu-west-1"
description = "aws region"
}
variable "fsxname" {
default = "bbva-main"
description = "default fsx name"
}
variable "fsx_admin_password" {
default = "Astra123!"
description = "default fsx filesystem admin password"
}
variable "eksclustername" {
default = "bbva-main"
description = "default eks cluster name"
}
variable "instancetype" {
default = ["m5.large"]
description = "default eks instance type"
}