Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions data/data/openstack/variables-openstack.tf
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,7 @@ variable "openstack_master_root_volume_types" {

variable "openstack_worker_server_group_names" {
type = set(string)
default = [""]
description = "Names of the server groups for the worker nodes."
}

Expand Down
2 changes: 1 addition & 1 deletion docs/user/openstack/customization.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Beyond the [platform-agnostic `install-config.yaml` properties](../customization
* `type` (optional string): The OpenStack flavor name for machines in the pool.
* `rootVolume` (optional object): Defines the root volume for instances in the machine pool. The instances use ephemeral disks if not set.
* `size` (required integer): Size of the root volume in GB. Must be set to at least 25.
* `type` (optional string): The volume pool to create the volume from. It was replaced by `types`.
* `type` (deprectated string): The volume pool to create the volume from. It was replaced by `types`.
* `types` (required list of strings): The volume pool to create the volume from. If compute `zones` are defined with more than one type, the number of zones must match the number of types.
* `zones` (optional list of strings): The names of the availability zones you want to install your root volumes on. If unset, the installer will use your default volume zone.
If compute `zones` contains at least one value, `rootVolume.zones` must also contain at least one value.
Expand Down