Infra: AWS Update to Ubuntu 20.04
[csit.git] / fdio.infra.terraform / 2n_aws_c5n / variables.tf
1 variable "region" {
2   description = "AWS Region"
3   type = string
4   default = "eu-central-1"
5 }
6
7 variable "avail_zone" {
8   description = "AWS availability zone"
9   type = string
10   default = "eu-central-1a"
11 }
12
13 variable "ami_image" {
14   # eu-central-1/focal-20.04-amd64-hvm-ssd-20210119.1
15   # kernel 5.4.0-1035-aws (~5.4.0-65)
16   description = "AWS AMI image ID"
17   type = string
18   default = "ami-0a875db8a031a9efb"
19 }
20
21 variable "instance_type" {
22   description = "AWS instance type"
23   type = string
24   default = "c5n.4xlarge"
25 }
26
27 variable "testbed_name" {
28   description = "Testbed name"
29   type = string
30   default = "testbed1"
31 }