Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

scaleway_server_instance: Block SSD as root volume #1370

Closed
karelorigin opened this issue Jul 12, 2022 · 1 comment · Fixed by #1371
Closed

scaleway_server_instance: Block SSD as root volume #1370

karelorigin opened this issue Jul 12, 2022 · 1 comment · Fixed by #1371
Assignees
Labels
documentation enhancement instance Instance issues, bugs and feature requests

Comments

@karelorigin
Copy link

Community Note

  • Please vote on this issue by adding a 👍 reaction to the original issue to help the community and maintainers prioritize this request
  • Please do not leave "+1" or other comments that do not add relevant new information or questions, they generate extra noise for issue followers and do not help prioritize the request
  • If you are interested in working on this issue or have submitted a pull request, please leave a comment

Description

I noticed that there's no way to create a server instance with a block storage SSD as its root volume, even though this can be accomplished via the Scaleway dashboard.

New or Affected Resource(s)

  • scaleway_instance_server

Potential Terraform Configuration

resource "scaleway_instance_server" "test" {
  type  = "DEV1-S"
  image = "ubuntu_focal"

  root_volume {
     type       = "b_ssd"
     size_in_gb = 50
  }
}
@Codelax
Copy link
Member

Codelax commented Jul 13, 2022

This works with

resource "scaleway_instance_server" "test" {
  type  = "DEV1-S"
  image = "ubuntu_focal"

  root_volume {
    volume_type       = "b_ssd"
    size_in_gb = 50
  }
}

I keep issue open as there is a lack of documentation

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation enhancement instance Instance issues, bugs and feature requests
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants