-
Notifications
You must be signed in to change notification settings - Fork 76
demos/terraform: Improve MicroCloud resource naming #1428
New issue
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
base: main
Are you sure you want to change the base?
Changes from all commits
9d73c80
2a41f1a
02f4bca
648bfde
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -148,13 +148,6 @@ variable "lookup_bridge" { | |
| default = "lxdbr0" | ||
| } | ||
|
|
||
|
|
||
| variable "vm_count" { | ||
| description = "Number of VMs to create" | ||
| type = number | ||
| default = 4 | ||
| } | ||
|
|
||
| variable "ip_base_offset" { | ||
| description = "Base IP address offset for the first VM" | ||
| type = number | ||
|
|
@@ -179,6 +172,12 @@ variable "ceph_disk_name_prefix" { | |
| default = "remote" | ||
| } | ||
|
|
||
| variable "disk_number_start" { | ||
| description = "Starting number for disk names (e.g., 1 for local1/remote1, 5 for local5/remote5)" | ||
| type = number | ||
| default = 1 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we rather start at in index 0 by default?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi, I started the index at |
||
| } | ||
|
mseralessandri marked this conversation as resolved.
|
||
|
|
||
| variable "initiator" { | ||
| description = "Name of the initiator node for MicroCloud cluster (matches preseed initiator)" | ||
| type = string | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.