|
1 | 1 | variable "storage_count" {
|
| 2 | + description = "Number of storage hosts" |
2 | 3 | type = string
|
3 | 4 | }
|
4 | 5 |
|
5 | 6 | variable "ssh_public_key" {
|
| 7 | + description = "Path to an SSH public key to register as a keypair in OpenStack" |
6 | 8 | type = string
|
7 | 9 | }
|
8 | 10 |
|
9 | 11 | variable "ssh_user" {
|
| 12 | + description = "Username to use for SSH access to host" |
10 | 13 | type = string
|
11 | 14 | }
|
12 | 15 |
|
13 | 16 | variable "ansible_control_vm_name" {
|
| 17 | + description = "Name of the Ansible control host" |
14 | 18 | type = string
|
15 | 19 | }
|
16 | 20 |
|
17 | 21 | variable "seed_vm_flavor" {
|
| 22 | + description = "OpenStack flavor to use for the seed VM" |
18 | 23 | type = string
|
19 | 24 | }
|
20 | 25 |
|
21 | 26 | variable "prefix" {
|
| 27 | + description = "A prefix to apply the name of all hosts" |
22 | 28 | type = string
|
23 | 29 | }
|
24 | 30 |
|
25 | 31 | variable "compute_count" {
|
| 32 | + description = "Number of compute hosts" |
26 | 33 | type = string
|
27 | 34 | }
|
28 | 35 |
|
29 | 36 | variable "controller_count" {
|
| 37 | + description = "Number of controller hosts" |
30 | 38 | type = string
|
31 | 39 | }
|
32 | 40 |
|
33 | 41 | variable "multinode_image" {
|
| 42 | + description = "Name of an image registered in Glance with which to deploy hosts" |
34 | 43 | type = string
|
35 | 44 | }
|
36 | 45 |
|
37 | 46 | variable "multinode_keypair" {
|
| 47 | + description = "Name of an SSH keypair to register in OpenStack" |
38 | 48 | type = string
|
39 | 49 | }
|
40 | 50 |
|
41 | 51 | variable "ansible_control_vm_flavor" {
|
| 52 | + description = "OpenStack flavor to use for the Ansible control host" |
42 | 53 | type = string
|
43 | 54 | }
|
44 | 55 |
|
45 | 56 | variable "multinode_flavor" {
|
| 57 | + description = "OpenStack flavor to use for the controller and compute hosts" |
46 | 58 | type = string
|
47 | 59 | }
|
48 | 60 |
|
49 | 61 | variable "storage_flavor" {
|
| 62 | + description = "OpenStack flavor to use for the storage hosts" |
50 | 63 | type = string
|
51 | 64 | }
|
52 | 65 |
|
53 | 66 | variable "infra_vm_flavor" {
|
| 67 | + description = "OpenStack flavor to use for the Wazuh VM" |
54 | 68 | type = string
|
55 | 69 | }
|
56 | 70 |
|
57 | 71 | variable "multinode_vm_network" {
|
| 72 | + description = "OpenStack network to attach hosts to" |
58 | 73 | type = string
|
59 | 74 | }
|
60 | 75 |
|
61 | 76 | variable "multinode_vm_subnet" {
|
| 77 | + description = "OpenStack subnet to attach hosts to" |
62 | 78 | type = string
|
63 | 79 | }
|
64 | 80 |
|
|
0 commit comments