Browse Source

Increase drive size to 1 TB

This is needed for future expansion for upgrades. To be tagged v1.24.13
Brad Poulton 4 years ago
parent
commit
c2260bf738
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