diff options
author | Tomas Alexy <tomas.alexy@pantheon.tech> | 2021-04-01 15:44:14 +0200 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2021-04-08 07:37:15 +0000 |
commit | 8018da98e0f362bc69fc9600fac222a86fd46b5e (patch) | |
tree | 728e9e4c160aa7c8e4dcc784c1a4b30e562f49a1 /fdio.infra.terraform/3n_aws_c5n/main.tf | |
parent | db7fb867bfafee8515b1baf0a77c0e683eb38e68 (diff) |
Infra: AWS Update to Ubuntu 20.04
- Change AMI image to Ubuntu 20.04
- Add calibration role
- Add AWS vfio-patch for kernel 5.8+
- Prepare root module's main.tf to be used with environment variables
Signed-off-by: Tomas Alexy <tomas.alexy@pantheon.tech>
Change-Id: I7db3f28ba573a5a8a1dc07179ef78ef34ce9ebf3
Diffstat (limited to 'fdio.infra.terraform/3n_aws_c5n/main.tf')
-rw-r--r-- | fdio.infra.terraform/3n_aws_c5n/main.tf | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/fdio.infra.terraform/3n_aws_c5n/main.tf b/fdio.infra.terraform/3n_aws_c5n/main.tf index 0e757b89bb..0aca7af05a 100644 --- a/fdio.infra.terraform/3n_aws_c5n/main.tf +++ b/fdio.infra.terraform/3n_aws_c5n/main.tf @@ -1,19 +1,18 @@ module "deploy" { source = "./deploy" - # TODO: Use ENV variable for testbed_name for dynamic deployment - testbed_name = "testbed1" + # Parameters starting with var. can be set using "TF_VAR_*" environment variables + # or -var parameter when running "terraform apply", for default values see ./variables.tf + testbed_name = var.testbed_name topology_name = "3n_aws_c5n" environment_name = "CSIT-AWS" resources_name_prefix = "CSIT_3n_aws_c5n" # AWS general - region = "eu-central-1" - avail_zone = "eu-central-1a" - instance_type = "c5n.4xlarge" - ami_image = "ami-0b418580298265d5c" - # eu-central-1/bionic-18.04-amd64-hvm-ssd-20200112 - # kernel 4.15.0-1057-aws (~4.15.0-74) + region = var.region + avail_zone = var.avail_zone + instance_type = var.instance_type + ami_image = var.ami_image # AWS Network vpc_cidr_mgmt = "192.168.0.0/24" |