-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
74 lines (63 loc) · 1.71 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
66
67
68
69
70
71
72
73
74
variable "aws_access_key_id" {
default = []
}
variable "aws_secret_access_key" {
default = []
}
variable "private_key_path" {
default = []
}
variable "key_name" {
default = []
}
variable "vpc_name" {
description = "Please provide a name for the VPC. We recommend the following naming convention: customer-poc_type-sesr."
default = []
}
variable "available_aws_regions" {
description = "Please select an AZ: (1:eu-west-1, 2:eu-west-3, 3:eu-central-1, 4:us-east-1, 5:us-east-2, 6:us-west-1, 7:us-west-2, 8:ap-southeast-1, 9:ap-southeast-2, 10:sa-east-1)"
default = []
}
variable "selected_aws_region" {
description = "Provide the desired region"
default = {
"1" = "eu-west-1"
"2" = "eu-west-3"
"3" = "eu-central-1"
"4" = "us-east-1"
"5" = "us-east-2"
"6" = "us-west-1"
"7" = "us-west-2"
"8" = "ap-southeast-1"
"9" = "ap-southeast-2"
"10" = "sa-east-1"
"11" = "eu-west-2"
}
}
variable "selected_ec2_instance_count" {
description = "Please enter instance count: "
default = []
}
variable "selected_ec2_instance_type" {
description = "Please select an EC2 instance type: (1:t2.micro, 2:t2.small, 3:t2.medium, 4:t2.large, 5:t2.xlarge, 6:t2.2xlarge)"
default = []
}
variable "available_ec2_instance_types" {
description = "Provide the desired EC2 instance type"
default = {
"1" = "t2.micro"
"2" = "t2.small"
"3" = "t2.medium"
"4" = "t2.large"
"5" = "t2.xlarge"
"6" = "t2.2xlarge"
}
}
variable "ec2_instance_type" {
description = "Provide the desired EC2 instance type"
default = "m5.xlarge"
}
variable "root_block_volume_size" {
description = "Please enter a number for the EC2 instance volume size in GiB: "
default = "200"
}