Terraform: Cleanup
[csit.git] / fdio.infra.terraform / 3n_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_initiated_shutdown_behavior" {
22   description = "Shutdown behavior for the instance"
23   type        = string
24   default     = "terminate"
25 }
26
27 variable "instance_type" {
28   description = "AWS instance type"
29   type        = string
30   default     = "c5n.9xlarge"
31 }
32
33 variable "testbed_name" {
34   description = "Testbed name"
35   type        = string
36   default     = "testbed1"
37 }