Browse Source

only basics

Chris Mague 4 năm trước cách đây
mục cha
commit
9718e59ebb
1 tập tin đã thay đổi với 2 bổ sung1 xóa
  1. 2 1
      main.tf

+ 2 - 1
main.tf

@@ -82,7 +82,8 @@ resource "null_resource" "remote-config" {
       private_key = file("~/.ssh/${var.vpc-name}.pem")
       agent       = true
     }
-    inline = ["sudo apt update > /dev/null  && sudo apt install -y python python-pip > /dev/null"]
+    #inline = ["sudo apt update > /dev/null  && sudo apt install -y python-pip > /dev/null"]
+    inline = ["sudo apt update > /dev/null"]
   }
   depends_on = [aws_instance.re, aws_eip_association.re-eip-assoc]
 }