We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
packer build doesn't work anymore, here is the error :
packer build
error creating server: scaleway-sdk-go: http error 410 Gone
From packer version 1.8.4 to 1.11.0
packer version
packer { required_plugins { scaleway = { version = ">= 1.0.5" source = "github.com/scaleway/scaleway" } } } variable "access_key" { type = string sensitive = true default = "" } variable "project_id" { type = string sensitive = true default = "" } variable "secret_key" { type = string sensitive = true default = "" } source "scaleway" "server_draft" { access_key = "${var.access_key}" commercial_type = "PLAY2-PICO" image = "ubuntu_noble" image_name = "server-draft" project_id = "${var.project_id}" remove_volume = "true" secret_key = "${var.secret_key}" server_name = "server-build" snapshot_name = "server-draft-snapshot" ssh_username = "root" zone = "fr-par-2" } build { sources = ["source.scaleway.server_draft"] }
The text was updated successfully, but these errors were encountered:
Hello 👋 does it work if you put a UUID directly? I'm trying to pin point where the error is.
Sorry, something went wrong.
Hello
You are right, using a UUID instead of the image name does the job.
Thanks
We released a new version: https://github.com/scaleway/packer-plugin-scaleway/releases/tag/v1.1.1 that should also work with the label. Feel free to test it out :)
No branches or pull requests
Overview of the Issue
packer build
doesn't work anymore, here is the error :Reproduction Steps
Plugin and Packer version
From
packer version
1.8.4 to 1.11.0Simplified Packer Buildfile
The text was updated successfully, but these errors were encountered: