Skip to content

Commit 7ddb6c3

Browse files
committed
chore: prepare release v1.10.0
1 parent 3b153e5 commit 7ddb6c3

File tree

2 files changed

+6
-18
lines changed

2 files changed

+6
-18
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/)
55

66
## [Unreleased]
77

8+
## [1.10.0] - 2026-03-17
9+
810
### Added
911

1012
- `server_plan` parameter to builder configuration for selecting server plan to use during build.
@@ -161,7 +163,8 @@ See updating [Changelog example here](https://keepachangelog.com/en/1.0.0/)
161163
- Upgrade to Packer 1.7.0
162164
- Copy codebase from https://github.com/UpCloudLtd/upcloud-packer
163165

164-
[Unreleased]: https://github.com/UpCloudLtd/packer-plugin-upcloud/compare/v1.9.2...HEAD
166+
[Unreleased]: https://github.com/UpCloudLtd/packer-plugin-upcloud/compare/v1.10.0...HEAD
167+
[1.10.0]: https://github.com/UpCloudLtd/packer-plugin-upcloud/compare/v1.9.2...v1.10.0
165168
[1.9.2]: https://github.com/UpCloudLtd/packer-plugin-upcloud/compare/v1.9.1...v1.9.2
166169
[1.9.1]: https://github.com/UpCloudLtd/packer-plugin-upcloud/compare/v1.9.0...v1.9.1
167170
[1.9.0]: https://github.com/UpCloudLtd/packer-plugin-upcloud/compare/v1.8.1...v1.9.0

example/build.pkr.hcl

Lines changed: 2 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,21 @@
11
packer {
22
required_plugins {
33
upcloud = {
4-
version = ">=v1.0.0"
4+
version = ">=v0.0.1"
55
source = "github.com/UpCloudLtd/upcloud"
66
}
77
}
88
}
99

10-
variable "username" {
11-
type = string
12-
description = "UpCloud API username"
13-
default = "${env("UPCLOUD_USERNAME")}"
14-
}
15-
16-
variable "password" {
17-
type = string
18-
description = "UpCloud API password"
19-
default = "${env("UPCLOUD_PASSWORD")}"
20-
sensitive = true
21-
}
22-
2310
variable "ssh_public_key" {
2411
type = string
2512
description = "Path to your SSH public key file"
2613
default = "~/.ssh/id_rsa.pub"
2714
}
2815

2916
source "upcloud" "test" {
30-
username = "${var.username}"
31-
password = "${var.password}"
3217
zone = "nl-ams1"
33-
storage_name = "ubuntu server 24.04"
18+
storage_uuid = "01000000-0000-4000-8000-000030240200"
3419
template_prefix = "ubuntu-server"
3520
# uncomment to use standard tier storage
3621
# storage_tier = "standard

0 commit comments

Comments
 (0)