blob: c5c74f6d1386bdb1dd42159efa09d7876297a23d (
plain)
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
|
variable "region" {
description = "AWS Region"
type = string
default = "eu-central-1"
}
variable "avail_zone" {
description = "AWS availability zone"
type = string
default = "eu-central-1a"
}
variable "ami_image" {
# eu-central-1/focal-20.04-amd64-hvm-ssd-20210119.1
# kernel 5.4.0-1035-aws (~5.4.0-65)
description = "AWS AMI image ID"
type = string
default = "ami-0a875db8a031a9efb"
}
variable "instance_type" {
description = "AWS instance type"
type = string
default = "c5n.9xlarge"
}
variable "testbed_name" {
description = "Testbed name"
type = string
default = "testbed1"
}
|