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/fully-configurable/README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -146,14 +146,14 @@ You need the following permissions to run this module:
146
146
| <aname="input_cpd_admin_password"></a> [cpd\_admin\_password](#input\_cpd\_admin\_password)| Password for the Cloud Pak for Data admin user. |`string`|`"passw0rd"`| no |
147
147
| <aname="input_cpd_entitlement_key"></a> [cpd\_entitlement\_key](#input\_cpd\_entitlement\_key)| Cloud Pak for Data entitlement key for access to the IBM Entitled Registry. Can be fetched from https://myibm.ibm.com/products-services/containerlibrary.|`string`| n/a | yes |
148
148
| <aname="input_cpd_version"></a> [cpd\_version](#input\_cpd\_version)| Cloud Pak for Data version to install. Only version 5.x.x is supported, latest versions can be found [here](https://www.ibm.com/docs/en/cloud-paks/cp-data?topic=versions-cloud-pak-data). |`string`|`"5.0.3"`| no |
149
-
| <aname="input_existing_cluster_name"></a> [existing\_cluster\_name](#input\_existing\_cluster\_name)| Name of an existing Red Hat OpenShift cluster to create and install watsonx onto. |`string`|`null`|no|
150
-
| <aname="input_existing_resource_group_name"></a> [existing\_resource\_group\_name](#input\_existing\_resource\_group\_name)| Resource group id of the cluster |`string`|`"Default"`|no|
149
+
| <aname="input_existing_cluster_name"></a> [existing\_cluster\_name](#input\_existing\_cluster\_name)| Name of an existing Red Hat OpenShift cluster to create and install watsonx onto. |`string`|n/a|yes|
150
+
| <aname="input_existing_resource_group_name"></a> [existing\_resource\_group\_name](#input\_existing\_resource\_group\_name)| Resource group id of the cluster |`string`|n/a|yes|
151
151
| <aname="input_ibmcloud_api_key"></a> [ibmcloud\_api\_key](#input\_ibmcloud\_api\_key)| The IBM Cloud API key to deploy resources. |`string`| n/a | yes |
152
152
| <aname="input_install_odf_cluster_addon"></a> [install\_odf\_cluster\_addon](#input\_install\_odf\_cluster\_addon)| Install the ODF cluster addon. |`bool`|`true`| no |
153
153
| <a name="input_odf_config"></a> [odf\_config](#input\_odf\_config) | Configuration for the ODF addon. Example add on options can be found [here](https://cloud.ibm.com/docs/openshift?topic=openshift-deploy-odf-classic&interface=cli#install-odf-cli-classic) | `map(string)` | <pre>{<br/> "addSingleReplicaPool": "false",<br/> "billingType": "essentials",<br/> "clusterEncryption": "false",<br/> "disableNoobaaLB": "false",<br/> "enableNFS": "false",<br/> "encryptionInTransit": "false",<br/> "hpcsBaseUrl": "",<br/> "hpcsEncryption": "false",<br/> "hpcsInstanceId": "",<br/> "hpcsSecretName": "",<br/> "hpcsServiceName": "",<br/> "hpcsTokenUrl": "",<br/> "ignoreNoobaa": "true",<br/> "numOfOsd": "1",<br/> "ocsUpgrade": "false",<br/> "odfDeploy": "true",<br/> "osdDevicePaths": "",<br/> "osdSize": "512Gi",<br/> "osdStorageClassName": "ibmc-vpc-block-metro-10iops-tier",<br/> "prepareForDisasterRecovery": "false",<br/> "resourceProfile": "balanced",<br/> "taintNodes": "false",<br/> "useCephRBDAsDefaultStorageClass": "false",<br/> "workerNodes": "all",<br/> "workerPool": ""<br/>}</pre> | no |
154
154
| <aname="input_odf_version"></a> [odf\_version](#input\_odf\_version)| Version of ODF to install. |`string`|`"4.16.0"`| no |
155
-
| <aname="input_prefix"></a> [prefix](#input\_prefix)| A unique identifier for resources that is prepended to resources that are provisioned. Must begin with a lowercase letter and end with a lowercase letter or number. Must be 16 or fewer characters. |`string`|`null`| no |
156
-
| <aname="input_region"></a> [region](#input\_region)| Region where resources will be created. To find your VPC region, use `ibmcloud is regions` command to find available regions. |`string`|n/a|yes|
155
+
| <aname="input_prefix"></a> [prefix](#input\_prefix)| A unique identifier for resources that is prepended to resources that are provisioned. Must begin with a lowercase letter and end with a lowercase letter or number. Must be 16 or fewer characters. |`string`|`"cp4d"`| no |
156
+
| <aname="input_region"></a> [region](#input\_region)| Region where resources will be created. To find your VPC region, use `ibmcloud is regions` command to find available regions. |`string`|`"us-south"`|no|
157
157
| <aname="input_watson_assistant_install"></a> [watson\_assistant\_install](#input\_watson\_assistant\_install)| If watsonx.ai is being installed, also install watson assistant |`bool`|`false`| no |
158
158
| <aname="input_watson_discovery_install"></a> [watson\_discovery\_install](#input\_watson\_discovery\_install)| If watsonx.ai is being installed, also install watson discovery |`bool`|`false`| no |
159
159
| <aname="input_watsonx_ai_install"></a> [watsonx\_ai\_install](#input\_watsonx\_ai\_install)| Determine whether the watsonx.ai cartridge for the deployer will be installed |`bool`|`false`| no |
Copy file name to clipboardExpand all lines: solutions/fully-configurable/variables.tf
+2-3Lines changed: 2 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ variable "ibmcloud_api_key" {
7
7
variable"prefix" {
8
8
description="A unique identifier for resources that is prepended to resources that are provisioned. Must begin with a lowercase letter and end with a lowercase letter or number. Must be 16 or fewer characters."
9
9
type=string
10
-
default=null
10
+
default="cp4d"
11
11
validation {
12
12
error_message="Prefix must begin with a letter and contain only lowercase letters, numbers, and - characters. Prefixes must end with a lowercase letter or number and be 16 or fewer characters."
0 commit comments