43a2df335ae15afa93d5c158c05efdffac45d813
[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 "vault-name" {
8     default = "dynamic-aws-creds-vault-admin"
9 }
10
11 variable "avail_zone" {
12   description = "AWS availability zone"
13   type = string
14   default = "eu-central-1a"
15 }
16
17 variable "ami_image" {
18   # eu-central-1/focal-20.04-amd64-hvm-ssd-20210119.1
19   # kernel 5.4.0-1035-aws (~5.4.0-65)
20   description = "AWS AMI image ID"
21   type = string
22   default = "ami-0a875db8a031a9efb"
23 }
24
25 variable "instance_type" {
26   description = "AWS instance type"
27   type = string
28   default = "c5n.9xlarge"
29 }
30
31 variable "testbed_name" {
32   description = "Testbed name"
33   type = string
34   default = "testbed1"
35 }