From 8cd63360514ca0f2ed91360a54bf0bf385d99b0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Wed, 27 May 2020 15:03:07 +0200 Subject: [PATCH] fix instance size for DigitalOcean MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- workspaces.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workspaces.tf b/workspaces.tf index 113c196..faf7ee0 100644 --- a/workspaces.tf +++ b/workspaces.tf @@ -11,8 +11,8 @@ locals { defaults = { hosts_count = 1 /* number of hosts in each DC */ - do_size = "ecs.t5-lc1m1.small" /* DigitalOcean */ - ac_size = "ecs.sn1ne.large" /* Alibaba Cloud */ + do_size = "s-1vcpu-1gb" /* DigitalOcean */ + ac_size = "ecs.t5-lc1m1.small" /* Alibaba Cloud */ gc_size = "n1-standard-1" /* Google Cloud */ }