fix(Terraform): Change AWS AZ
[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_tg" {
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-038ede035b200bf55"
23 }
24
25 variable "ami_image_sut" {
26   # eu-central-1/focal-20.04-amd64-hvm-ssd-20210119.1
27   # kernel 5.4.0-1035-aws (~5.4.0-65)
28   description = "AWS AMI image ID"
29   type        = string
30   default     = "ami-08675923394f0c300"
31 }
32
33 variable "instance_initiated_shutdown_behavior" {
34   description = "Shutdown behavior for the instance"
35   type        = string
36   default     = "terminate"
37 }
38
39 variable "instance_type" {
40   description = "AWS instance type"
41   type        = string
42   default     = "c5n.4xlarge"
43 }
44
45 variable "testbed_name" {
46   description = "Testbed name"
47   type        = string
48   default     = "testbed1"
49 }
50
51 variable "topology_name" {
52   description = "Topology name"
53   type        = string
54   default     = "2n_aws_c5n"
55 }
56
57 variable "environment_name" {
58   description = "Environment name"
59   type        = string
60   default     = "CSIT-AWS"
61 }
62
63 variable "resources_name_prefix" {
64   description = "Resources name prefix"
65   type        = string
66   default     = "CSIT_2n_aws_c5n"
67 }