Skip to content

Commit

Permalink
scaleway: use VC1M as default
Browse files Browse the repository at this point in the history
  • Loading branch information
pstadler committed Jul 9, 2017
1 parent af47a8f commit aec5fbf
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion provider/scaleway/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,18 @@ variable "region" {

variable "type" {
type = "string"
default = "VC1S"
default = "VC1M"
}

variable "image" {
type = "string"
default = "Ubuntu_Xenial"
}

variable "storage_size" {
default = 50
}

provider "scaleway" {
organization = "${var.organization}"
token = "${var.token}"
Expand All @@ -40,6 +44,11 @@ resource "scaleway_server" "host" {

count = "${var.hosts}"

volume = {
size_in_gb = "${var.storage_size}"
type = "l_ssd"
}

provisioner "remote-exec" {
inline = [
"apt-get update",
Expand Down

0 comments on commit aec5fbf

Please sign in to comment.