Terraform: Add job name as VPC ID
[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 }
36
37 variable "topology_name" {
38   description = "Topology name"
39   type        = string
40   default     = "2n_aws_c5n"
41 }
42
43 variable "environment_name" {
44   description = "Environment name"
45   type        = string
46   default     = "CSIT-AWS"
47 }
48
49 variable "resources_name_prefix" {
50   description = "Resources name prefix"
51   type        = string
52   default     = "CSIT_2n_aws_c5n"
53 }