Kaynağa Gözat

Merge pull request #240 from mdr-engineering/feature/ftd_MSOCI-1460_Phantom

Adds phantom_instance_count to account varibles
Frederick Damstra 4 yıl önce
ebeveyn
işleme
8ce974bcbf

+ 1 - 1
bin/apply_module_everywhere

@@ -9,6 +9,6 @@
 for i in $( find . -type d -name "$1" -print | egrep -v "000-skeleton" ); do
   echo Processing $i...
   pushd $i
-  terragrunt-local init && terragrunt-local apply
+  terragrunt init && terragrunt apply
   popd
 done

+ 4 - 1
prod/aws-us-gov/mdr-prod-c2/account.hcl

@@ -166,8 +166,11 @@ locals {
   # mailrelay
   mailrelay_instance_type = "t3a.micro"
 
-  # Proxy
+  # OpenVPN Server
   openvpn_instance_type = "t3a.medium"
+
+  # Phantom Server
+  phantom_instance_count = 1
   
   # Proxy
   proxy_server_instance_type = "t3a.medium"

+ 3 - 0
test/aws-us-gov/mdr-test-c2/account.hcl

@@ -173,6 +173,9 @@ locals {
   # OpenVPN Server
   openvpn_instance_type = "t3a.medium"
 
+  # Phantom Server
+  phantom_instance_count = 1
+
   # Proxy Server
   proxy_server_instance_type = "t3a.micro"