-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
51 lines (41 loc) · 1.25 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
variable "node_name" {
default = "cheapdevenv"
description = "Controls the naming of the AWS resources."
}
variable "access_key" {
default = ""
}
variable "secret_key" {
default = ""
}
variable "ssh_key" {
description = "Name of SSH public key you used under AWS > EC2 > Key pairs web console."
}
variable "developer_cidr_blocks" {
description = "A comma separated list of CIDR blocks to allow SSH connections from."
}
variable "region" {
default = "us-east-1"
}
variable "az" {
default = "a"
}
variable "remotedesktop_instance_type" {
default = "m1.small"
description = "Which EC2 instance type to use for the remotedesktop instance."
}
variable "remotedesktop_spot_price" {
default = "0.01"
description = "The maximum spot bid for the remotedesktop instance."
}
variable "ami_name_filter" {
//default = "ubuntu/images/hvm-ssd/ubuntu-bionic-18.04-amd64-server-*" # Ubuntu
//default = "ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*" # Ubuntu
default = "chilcano/images/hvm-ssd/ubuntu-bionic-18.04-amd64-gui-*" # Chilcano
description = "AMI Name Filter."
}
variable "ami_owner" {
//default = "099720109477" # Ubuntu
default = "263455585760" # Chilcano
description = "AMI Owner."
}