Browse Source

Merge pull request #221 from mdr-engineering/feature/bp_MSOCI-1783_phantom_HD

Increase drive size to 1 TB
Brad Poulton 4 years ago
parent
commit
f2a902ab6f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      base/phantom/main.tf

+ 1 - 1
base/phantom/main.tf

@@ -64,7 +64,7 @@ resource "aws_instance" "phantom-server-instance" {
     # /opt - NOTE: Not in ami
     device_name = "/dev/xvdf"
     volume_type = "gp3"
-    volume_size = var.environment == "test" ? 60 : 500 # Phantom needs extra space for upgrades
+    volume_size = var.environment == "test" ? 60 : 1000 # Phantom needs extra space for upgrades
     delete_on_termination = var.environment == "test" ? true : false # extra protection against deleting phantom drive
     encrypted = true
     kms_key_id = data.aws_kms_key.ebs-key.arn