From feef8f00317a868b8c8822293868fc753c47b7da Mon Sep 17 00:00:00 2001 From: Keir Williams Date: Thu, 18 Jan 2024 17:40:18 +0000 Subject: [PATCH] planetfm(pd): add instance `pd-cafm-a-13-a` (#4620) --- .../planetfm/locals_production.tf | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/terraform/environments/planetfm/locals_production.tf b/terraform/environments/planetfm/locals_production.tf index 48ce553d46e..7d9c81bfc70 100644 --- a/terraform/environments/planetfm/locals_production.tf +++ b/terraform/environments/planetfm/locals_production.tf @@ -103,6 +103,30 @@ locals { create_external_record = true } }) + pd-cafm-a-13-a = merge(local.defaults_app_ec2, { + config = merge(local.defaults_app_ec2.config, { + ami_name = "pd-cafm-a-13-a" + availability_zone = "${local.region}a" + }) + instance = merge(local.defaults_app_ec2.instance, { + instance_type = "t3.xlarge" + }) + ebs_volumes = { + "/dev/sda1" = { type = "gp3", size = 128 } # root volume + "/dev/sdb" = { type = "gp3", size = 28 } + } + tags = { + description = "RDS Session Host and CAFM App Server. Copy of PDFAW0013" + app-config-status = "pending" + os-type = "Windows" + ami = "pd-cafm-a-13-a" + component = "app" + } + route53_records = { + create_internal_record = true + create_external_record = true + } + }) pd-cafm-a-14-b = merge(local.defaults_app_ec2, { config = merge(local.defaults_app_ec2.config, { ami_name = "pd-cafm-a-14-b"