Fix description typo

This commit is contained in:
Magnus Andersson 2024-01-11 16:44:01 +01:00
parent bb139e7239
commit 7868e3e751
Signed by: mandersson
GPG key ID: 19CB2C58E1F19B16

View file

@ -12,7 +12,7 @@ resource "openstack_networking_port_v2" "kubeport" {
resource "openstack_blockstorage_volume_v3" "kubevolume" {
count = var.kubesize # size of cluster
name = "kube${count.index + 1}-matrix-test-sunet-se-vol"
description = "OS volume for kubernetes node ${count.index}"
description = "OS volume for kubernetes node ${count.index + 1}"
size = 30
image_id = data.openstack_images_image_v2.ubuntu2204image.id
enable_online_resize = true # Allow us to resize volume while attached.