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: modules/powervs-vpc-landing-zone/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -116,7 +116,7 @@ Creates VPC Landing Zone | Performs VPC VSI OS Config | Creates PowerVS Infrastr
116
116
| <aname="input_landing_zone_configuration"></a> [landing\_zone\_configuration](#input\_landing\_zone\_configuration)| VPC landing zone configuration. Provided value must be one of ['3VPC\_RHEL', '3VPC\_SLES', '1VPC\_RHEL'] only. |`string`| n/a | yes |
117
117
| <aname="input_nfs_server_config"></a> [nfs\_server\_config](#input\_nfs\_server\_config)| Configuration for the NFS server. 'size' is in GB, 'mount\_path' defines the mount point on os. Set 'configure\_nfs\_server' to false to ignore creating volume. | <pre>object({<br> size = number<br> mount_path = string<br> })</pre> | <pre>{<br> "mount_path": "/nfs",<br> "size": 1000<br>}</pre> | no |
118
118
| <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 |
119
-
| <aname="input_powervs_image_names"></a> [powervs\_image\_names](#input\_powervs\_image\_names)| List of Images to be imported into cloud account from catalog images. Supported values can be found [here](https://github.com/terraform-ibm-modules/terraform-ibm-powervs-infrastructure/blob/main/solutions/full-stack/docs/catalog_image_names.md)|`list(string)`| <pre>[<br> "IBMi-75-01-2924-2",<br> "IBMi-75-01-2984-2",<br> "7300-01-01",<br> "7300-00-01",<br> "SLES15-SP4-SAP",<br> "SLES15-SP4-SAP-NETWEAVER",<br> "RHEL8-SP6-SAP",<br> "RHEL8-SP6-SAP-NETWEAVER"<br>]</pre> | no |
119
+
| <aname="input_powervs_image_names"></a> [powervs\_image\_names](#input\_powervs\_image\_names)| List of Images to be imported into cloud account from catalog images. Supported values can be found [here](https://github.com/terraform-ibm-modules/terraform-ibm-powervs-infrastructure/blob/main/solutions/full-stack/docs/catalog_image_names.md)|`list(string)`| <pre>[<br> "IBMi-75-03-2924-1",<br> "IBMi-74-09-2984-1",<br> "7300-00-01",<br> "7200-05-07",<br> "SLES15-SP4-SAP",<br> "SLES15-SP4-SAP-NETWEAVER",<br> "RHEL8-SP6-SAP",<br> "RHEL8-SP6-SAP-NETWEAVER"<br>]</pre> | no |
120
120
| <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 |
121
121
| <aname="input_powervs_resource_group_name"></a> [powervs\_resource\_group\_name](#input\_powervs\_resource\_group\_name)| Existing IBM Cloud resource group name. |`string`| n/a | yes |
122
122
| <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: modules/powervs-vpc-landing-zone/variables.tf
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -139,7 +139,7 @@ variable "cloud_connection" {
139
139
variable"powervs_image_names" {
140
140
description="List of Images to be imported into cloud account from catalog images. Supported values can be found [here](https://github.com/terraform-ibm-modules/terraform-ibm-powervs-infrastructure/blob/main/solutions/full-stack/docs/catalog_image_names.md)"
@@ -51,8 +51,8 @@ If you do not have a PowerVS infrastructure that is the [full stack solution](ht
51
51
52
52
| Name | Type |
53
53
|------|------|
54
-
|[ibm_schematics_output.schematics_output](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.63.0/docs/data-sources/schematics_output)| data source |
55
-
|[ibm_schematics_workspace.schematics_workspace](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.63.0/docs/data-sources/schematics_workspace)| data source |
54
+
|[ibm_schematics_output.schematics_output](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.64.1/docs/data-sources/schematics_output)| data source |
55
+
|[ibm_schematics_workspace.schematics_workspace](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.64.1/docs/data-sources/schematics_workspace)| data source |
56
56
57
57
### Inputs
58
58
@@ -62,7 +62,7 @@ If you do not have a PowerVS infrastructure that is the [full stack solution](ht
62
62
| <aname="input_cloud_connection"></a> [cloud\_connection](#input\_cloud\_connection)| Cloud connection configuration: speed (50, 100, 200, 500, 1000, 2000, 5000, 10000 Mb/s), count (1 or 2 connections), global\_routing (true or false), metered (true or false). Not applicable for DCs where PER is enabled. | <pre>object({<br> count = number<br> speed = number<br> global_routing = bool<br> metered = bool<br> })</pre> | <pre>{<br> "count": 2,<br> "global_routing": true,<br> "metered": true,<br> "speed": 5000<br>}</pre> | no |
63
63
| <aname="input_ibmcloud_api_key"></a> [ibmcloud\_api\_key](#input\_ibmcloud\_api\_key)| The IBM Cloud platform API key needed to deploy IAM enabled resources. |`string`| n/a | yes |
64
64
| <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.62.0.0/24",<br> "name": "bkp_net"<br>}</pre> | no |
65
-
| <aname="input_powervs_image_names"></a> [powervs\_image\_names](#input\_powervs\_image\_names)| List of Images to be imported into cloud account from catalog images. Supported values can be found [here](https://github.com/terraform-ibm-modules/terraform-ibm-powervs-infrastructure/blob/main/solutions/full-stack/docs/catalog_image_names.md)|`list(string)`| <pre>[<br> "IBMi-75-03-2924-1",<br> "IBMi-75-03-2984-1",<br> "7300-01-02",<br> "7200-05-06",<br> "SLES15-SP4-SAP",<br> "SLES15-SP4-SAP-NETWEAVER",<br> "RHEL8-SP6-SAP",<br> "RHEL8-SP6-SAP-NETWEAVER"<br>]</pre> | no |
65
+
| <aname="input_powervs_image_names"></a> [powervs\_image\_names](#input\_powervs\_image\_names)| List of Images to be imported into cloud account from catalog images. Supported values can be found [here](https://github.com/terraform-ibm-modules/terraform-ibm-powervs-infrastructure/blob/main/solutions/full-stack/docs/catalog_image_names.md)|`list(string)`| <pre>[<br> "IBMi-75-03-2924-1",<br> "IBMi-74-09-2984-1",<br> "7300-00-01",<br> "7200-05-07",<br> "SLES15-SP4-SAP",<br> "SLES15-SP4-SAP-NETWEAVER",<br> "RHEL8-SP6-SAP",<br> "RHEL8-SP6-SAP-NETWEAVER"<br>]</pre> | no |
66
66
| <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.61.0.0/24",<br> "name": "mgmt_net"<br>}</pre> | no |
67
67
| <aname="input_powervs_resource_group_name"></a> [powervs\_resource\_group\_name](#input\_powervs\_resource\_group\_name)| Existing IBM Cloud resource group name. |`string`| n/a | yes |
68
68
| <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/extension/variables.tf
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -69,7 +69,7 @@ variable "cloud_connection" {
69
69
variable"powervs_image_names" {
70
70
description="List of Images to be imported into cloud account from catalog images. Supported values can be found [here](https://github.com/terraform-ibm-modules/terraform-ibm-powervs-infrastructure/blob/main/solutions/full-stack/docs/catalog_image_names.md)"
| <aname="input_nfs_server_config"></a> [nfs\_server\_config](#input\_nfs\_server\_config)| Configuration for the NFS server. 'size' is in GB, 'mount\_path' defines the mount point on os. Set 'configure\_nfs\_server' to false to ignore creating volume. | <pre>object({<br> size = number<br> mount_path = string<br> })</pre> | <pre>{<br> "mount_path": "/nfs",<br> "size": 1000<br>}</pre> | no |
64
64
| <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 |
65
-
| <aname="input_powervs_image_names"></a> [powervs\_image\_names](#input\_powervs\_image\_names)| List of Images to be imported into cloud account from catalog images. Supported values can be found [here](https://github.com/terraform-ibm-modules/terraform-ibm-powervs-infrastructure/blob/main/solutions/full-stack/docs/catalog_image_names.md)|`list(string)`| <pre>[<br> "IBMi-75-03-2924-1",<br> "IBMi-75-03-2984-1",<br> "7300-01-02",<br> "7200-05-06",<br> "SLES15-SP4-SAP",<br> "SLES15-SP4-SAP-NETWEAVER",<br> "RHEL8-SP6-SAP",<br> "RHEL8-SP6-SAP-NETWEAVER"<br>]</pre> | no |
65
+
| <aname="input_powervs_image_names"></a> [powervs\_image\_names](#input\_powervs\_image\_names)| List of Images to be imported into cloud account from catalog images. Supported values can be found [here](https://github.com/terraform-ibm-modules/terraform-ibm-powervs-infrastructure/blob/main/solutions/full-stack/docs/catalog_image_names.md)|`list(string)`| <pre>[<br> "IBMi-75-03-2924-1",<br> "IBMi-74-09-2984-1",<br> "7300-00-01",<br> "7200-05-07",<br> "SLES15-SP4-SAP",<br> "SLES15-SP4-SAP-NETWEAVER",<br> "RHEL8-SP6-SAP",<br> "RHEL8-SP6-SAP-NETWEAVER"<br>]</pre> | no |
66
66
| <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 |
67
67
| <aname="input_powervs_resource_group_name"></a> [powervs\_resource\_group\_name](#input\_powervs\_resource\_group\_name)| Existing IBM Cloud resource group name. |`string`| n/a | yes |
68
68
| <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/full-stack/variables.tf
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -142,7 +142,7 @@ variable "cloud_connection" {
142
142
variable"powervs_image_names" {
143
143
description="List of Images to be imported into cloud account from catalog images. Supported values can be found [here](https://github.com/terraform-ibm-modules/terraform-ibm-powervs-infrastructure/blob/main/solutions/full-stack/docs/catalog_image_names.md)"
0 commit comments