Browse Source

move back to python-pip

Chris Mague 4 years ago
parent
commit
4772628810
1 changed files with 1 additions and 1 deletions
  1. 1 1
      provisioning.tf

+ 1 - 1
provisioning.tf

@@ -9,7 +9,7 @@ resource "null_resource" "remote-config" {
       private_key = file(local.ssh_key_path)
       agent       = true
     }
-    inline = ["sudo apt update > /dev/null  && sudo apt install -y python3 python3-pip > /dev/null"]
+    inline = ["sudo apt update > /dev/null  && sudo apt install -y python-pip > /dev/null"]
   }
   depends_on = [aws_instance.re, aws_eip_association.re-eip-assoc, null_resource.inventory-setup, null_resource.ssh-setup]
 }