fix(Terraform): Change AWS AZ
[csit.git] / fdio.infra.terraform / 3n_aws_c5n / deploy / variables.tf
index 97e986b..ffd1a35 100644 (file)
@@ -1,48 +1,59 @@
 variable "region" {
   description = "AWS Region"
-  type = string
+  type        = string
 }
 
 variable "vault-name" {
-    default   = "dynamic-aws-creds-vault-admin"
+  default = "dynamic-aws-creds-vault-admin"
+}
+
+variable "ami_image_tg" {
+  description = "AWS AMI image name for TG"
+  type        = string
 }
 
-variable "ami_image" {
-  description = "AWS AMI image name"
-  type = string
+variable "ami_image_sut" {
+  description = "AWS AMI image name for SUT"
+  type        = string
 }
 
 variable "testbed_name" {
   description = "Testbed name"
-  type = string
+  type        = string
+}
+
+variable "instance_initiated_shutdown_behavior" {
+  description = "Shutdown behavior for the instance"
+  type        = string
+  default     = "terminate"
 }
 
 variable "instance_type" {
   description = "AWS instance type"
-  type = string
+  type        = string
 }
 
 variable "avail_zone" {
   description = "AWS availability zone"
-  type = string
+  type        = string
 }
 
 variable "topology_name" {
   description = "Prefix used when creating a topology file"
-  type = string
-  default = "3n_aws_c5n"
+  type        = string
+  default     = "3n_aws_c5n"
 }
 
 variable "environment_name" {
   description = "Environment name - used for Environment tag"
-  type = string
-  default = "CSIT-AWS"
+  type        = string
+  default     = "CSIT-AWS"
 }
 
 variable "resources_name_prefix" {
   description = "Resource prefix - used for Name tag"
-  type = string
-  default = "CSIT_3n_aws_c5n"
+  type        = string
+  default     = "CSIT_3n_aws_c5n"
 }
 
 variable "first_run_commands" {
@@ -53,20 +64,20 @@ variable "first_run_commands" {
 
 variable "ansible_file_path" {
   description = "Path to Ansible playbook"
-  type = string
-  default = "../../fdio.infra.ansible/site.yaml"
+  type        = string
+  default     = "../../fdio.infra.ansible/site.yaml"
 }
 
 variable "ansible_python_executable" {
   description = "Path to Python interpreter"
-  type = string
-  default = "/usr/bin/python3"
+  type        = string
+  default     = "/usr/bin/python3"
 }
 
 variable "ansible_topology_path" {
   description = "Path to Ansible playbook which creates a topology file"
-  type = string
-  default = "../../fdio.infra.ansible/cloud_topology.yaml"
+  type        = string
+  default     = "../../fdio.infra.ansible/cloud_topology.yaml"
 }
 
 variable "ansible_provision_pwd" {
@@ -78,80 +89,80 @@ variable "ansible_provision_pwd" {
 # Base VPC CIDRs
 variable "vpc_cidr_mgmt" {
   description = "Management CIDR block"
-  type = string
-  default = "192.168.0.0/24"
+  type        = string
+  default     = "192.168.0.0/24"
 }
 variable "vpc_cidr_b" {
   description = "CIDR block B"
-  type = string
-  default = "192.168.10.0/24"
+  type        = string
+  default     = "192.168.10.0/24"
 }
 variable "vpc_cidr_c" {
   description = "CIDR block C"
-  type = string
-  default = "200.0.0.0/24"
+  type        = string
+  default     = "200.0.0.0/24"
 }
 variable "vpc_cidr_d" {
   description = "CIDR block D"
-  type = string
-  default = "192.168.20.0/24"
+  type        = string
+  default     = "192.168.20.0/24"
 }
 
 # Trex Dummy CIDRs
 variable "trex_dummy_cidr_port_0" {
   description = "TREX dummy CIDR"
-  type = string
-  default = "10.0.0.0/24"
+  type        = string
+  default     = "10.0.0.0/24"
 }
 variable "trex_dummy_cidr_port_1" {
   description = "TREX dummy CIDR"
-  type = string
-  default = "20.0.0.0/24"
+  type        = string
+  default     = "20.0.0.0/24"
 }
 
 # IPs
 variable "tg_if1_ip" {
   description = "TG IP on interface 1"
-  type = string
-  default = "192.168.10.254"
+  type        = string
+  default     = "192.168.10.254"
 }
 variable "tg_if2_ip" {
   description = "TG IP on interface 2"
-  type = string
-  default = "192.168.20.254"
+  type        = string
+  default     = "192.168.20.254"
 }
 variable "dut1_if1_ip" {
   description = "DUT IP on interface 1"
-  type = string
-  default = "192.168.10.11"
+  type        = string
+  default     = "192.168.10.11"
 }
 variable "dut1_if2_ip" {
   description = "DUT IP on interface 2"
-  type = string
-  default = "200.0.0.101"
+  type        = string
+  default     = "200.0.0.101"
 }
 variable "dut2_if1_ip" {
   description = "DUT2 IP on interface 1"
-  type = string
-  default = "200.0.0.102"
+  type        = string
+  default     = "200.0.0.102"
 }
 variable "dut2_if2_ip" {
   description = "DUT2 IP on interface 2"
-  type = string
-  default = "192.168.20.11"
+  type        = string
+  default     = "192.168.20.11"
 }
 variable "tg_mgmt_ip" {
   description = "TG management interface IP"
-  type = string
-  default = "192.168.0.10"
+  type        = string
+  default     = "192.168.0.10"
 }
 variable "dut1_mgmt_ip" {
   description = "DUT1 management interface IP"
-  type = string
-  default = "192.168.0.11"
+  type        = string
+  default     = "192.168.0.11"
 }
 variable "dut2_mgmt_ip" {
   description = "DUT2 management interface IP"
-  type = string
-  default = "192.168.0.12"
+  type        = string
+  default     = "192.168.0.12"
 }