From 89e1a701ebb211f61edfd1b54b24114f8a5d32dc Mon Sep 17 00:00:00 2001 From: Jimmy Kaplowitz Date: Wed, 13 Aug 2014 11:51:50 -0700 Subject: [PATCH] Disable SSH password auth on GCE This change was unintentional but occurred as part of GCE's transition from build-debian-cloud to bootstrap-vz. Might be replaced later with a similar change that applies to all bootstrap-vz providers, based on the opinion of the debian-cloud list. Change-Id: I72a694c49f32df06252d9cc01b1d5c7cfc015347 --- bootstrapvz/providers/gce/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bootstrapvz/providers/gce/__init__.py b/bootstrapvz/providers/gce/__init__.py index 4fbe5b1..627cc9c 100644 --- a/bootstrapvz/providers/gce/__init__.py +++ b/bootstrapvz/providers/gce/__init__.py @@ -40,6 +40,7 @@ def resolve_tasks(taskset, manifest): tasks.boot.ConfigureGrub, initd.InstallInitScripts, ssh.AddSSHKeyGeneration, + ssh.DisableSSHPasswordAuthentication, tasks.apt.CleanGoogleRepositoriesAndKeys, loopback.MoveImage,