Skip to content

Commit

Permalink
document volume label requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
sjpb committed Dec 8, 2023
1 parent b69af6e commit 5d307b6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
resource "openstack_blockstorage_volume_v3" "state" {
name = "${var.cluster_name}-state"
description = "State for control node"
description = "State for control node" # first word used to label filesystem
size = var.state_volume_size
}

resource "openstack_blockstorage_volume_v3" "home" {
name = "${var.cluster_name}-home"
description = "Home for control node"
description = "Home for control node" # first word used to label filesystem
size = var.home_volume_size
}

0 comments on commit 5d307b6

Please sign in to comment.