You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: solutions/standard-plus-vsi/README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -91,6 +91,7 @@ This example sets up the following infrastructure:
91
91
| <aname="input_network_services_vsi_profile"></a> [network\_services\_vsi\_profile](#input\_network\_services\_vsi\_profile)| Compute profile configuration of the network services vsi (cpu and memory configuration). Must be one of the supported profiles. See [here](https://cloud.ibm.com/docs/vpc?topic=vpc-profiles&interface=ui). |`string`|`"cx2-2x4"`| no |
92
92
| <aname="input_nfs_server_config"></a> [nfs\_server\_config](#input\_nfs\_server\_config)| Configuration for the NFS server. 'size' is in GB, 'iops' is maximum input/output operation performance bandwidth per second, 'mount\_path' defines the target mount point on os. Set 'configure\_nfs\_server' to false to ignore creating file storage share. | <pre>object({<br/> size = number<br/> iops = number<br/> mount_path = string<br/> })</pre> | <pre>{<br/> "iops": 600,<br/> "mount_path": "/nfs",<br/> "size": 200<br/>}</pre> | no |
93
93
| <aname="input_powervs_backup_network"></a> [powervs\_backup\_network](#input\_powervs\_backup\_network)| Name of the IBM Cloud PowerVS backup network and CIDR to create. | <pre>object({<br/> name = string<br/> cidr = string<br/> })</pre> | <pre>{<br/> "cidr": "10.52.0.0/24",<br/> "name": "bkp_net"<br/>}</pre> | no |
94
+
| <aname="input_powervs_instance_count"></a> [powervs\_instance\_count](#input\_powervs\_instance\_count)| Number of PowerVS instances to create. |`number`|`1`| no |
94
95
| <aname="input_powervs_management_network"></a> [powervs\_management\_network](#input\_powervs\_management\_network)| Name of the IBM Cloud PowerVS management subnet and CIDR to create. | <pre>object({<br/> name = string<br/> cidr = string<br/> })</pre> | <pre>{<br/> "cidr": "10.51.0.0/24",<br/> "name": "mgmt_net"<br/>}</pre> | no |
95
96
| <aname="input_powervs_resource_group_name"></a> [powervs\_resource\_group\_name](#input\_powervs\_resource\_group\_name)| Existing IBM Cloud resource group name. |`string`|`"Default"`| no |
96
97
| <aname="input_powervs_zone"></a> [powervs\_zone](#input\_powervs\_zone)| IBM Cloud data center location where IBM PowerVS infrastructure will be created. |`string`| n/a | yes |
Copy file name to clipboardExpand all lines: solutions/standard-plus-vsi/variables.tf
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,16 @@ variable "prefix" {
8
8
type=string
9
9
}
10
10
11
+
variable"powervs_instance_count" {
12
+
description="Number of PowerVS instances to create."
13
+
type=number
14
+
default=1
15
+
validation {
16
+
condition=var.powervs_instance_count>0
17
+
error_message="The number of PowerVS instances must be a positive integer."
18
+
}
19
+
}
20
+
11
21
variable"tshirt_size" {
12
22
description="PowerVS instance profiles. These profiles can be overridden by specifying 'custom_profile_instance_boot_image' and 'custom_profile' values in optional parameters."
0 commit comments