Skip to content

Commit 4f15ba5

Browse files
committed
deprecate standard
1 parent c91a000 commit 4f15ba5

File tree

13 files changed

+44
-1162
lines changed

13 files changed

+44
-1162
lines changed

.catalog-onboard-pipeline.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ offerings:
66
catalog_id: 7df1e4ca-d54c-4fd0-82ce-3d13247308cd
77
offering_id: 7ee5876d-6e30-49d1-be25-259a442085e8
88
variations:
9-
- name: standard
10-
mark_ready: true
11-
install_type: fullstack
12-
scc:
13-
instance_id: 1c7d5f78-9262-44c3-b779-b28fe4d88c37
14-
region: us-south
159
- name: fully-configurable
1610
mark_ready: true
1711
install_type: fullstack

ibm_catalog.json

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@
5050
],
5151
"flavors": [
5252
{
53-
"label": "Standard",
54-
"name": "standard",
53+
"label": "Fully configurable",
54+
"name": "fully-configurable",
5555
"install_type": "fullstack",
56-
"working_directory": "solutions/standard",
56+
"working_directory": "solutions/fully-configurable",
5757
"compliance": {
5858
"authority": "scc-v3",
5959
"profiles": [
@@ -112,12 +112,16 @@
112112
]
113113
},
114114
{
115-
"key": "use_existing_resource_group",
116-
"required": true
117-
},
118-
{
119-
"key": "resource_group_name",
120-
"required": true
115+
"key": "existing_resource_group_name",
116+
"required": true,
117+
"custom_config": {
118+
"type": "resource_group",
119+
"grouping": "deployment",
120+
"original_grouping": "deployment",
121+
"config_constraints": {
122+
"identifier": "rg_name"
123+
}
124+
}
121125
},
122126
{
123127
"key": "prefix",
@@ -197,6 +201,9 @@
197201
}
198202
]
199203
},
204+
{
205+
"key": "service_endpoints"
206+
},
200207
{
201208
"key": "elasticsearch_version",
202209
"required": false,
@@ -224,7 +231,7 @@
224231
"key": "tags"
225232
},
226233
{
227-
"key": "access_tags"
234+
"key": "elasticsearch_access_tags"
228235
},
229236
{
230237
"key": "auto_scaling"

solutions/fully-configurable/variables.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,8 +238,8 @@ variable "existing_kms_instance_crn" {
238238
description = "The CRN of a Key Protect or Hyper Protect Crypto Services instance. Required to create a new encryption key and key ring which will be used to encrypt both deployment data and backups. Applies only if `use_ibm_owned_encryption_key` is false. To use an existing key, pass values for `existing_kms_key_crn` and/or `existing_backup_kms_key_crn`. Bare in mind that backups encryption is only available in certain regions. See [Bring your own key for backups](https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-key-protect&interface=ui#key-byok) and [Using the HPCS Key for Backup encryption](https://cloud.ibm.com/docs/cloud-databases?topic=cloud-databases-hpcs#use-hpcs-backups)."
239239
default = null
240240
validation {
241-
condition = var.existing_kms_instance_crn == null && var.existing_kms_key_crn == null ? var.use_ibm_owned_encryption_key == true : true || var.existing_kms_instance_crn != null ? var.use_ibm_owned_encryption_key == false : true
242-
error_message = "When setting 'existing_kms_instance_crn', the 'use_ibm_owned_encryption_key' variable must be set to false. If 'existing_kms_instance_crn' and 'existing_kms_key_crn' are null the 'use_ibm_owned_encryption_key' variable must be set to true."
241+
condition = var.existing_elasticsearch_instance_crn == null ? var.existing_kms_instance_crn == null && var.existing_kms_key_crn == null ? var.use_ibm_owned_encryption_key == true : true || var.existing_kms_instance_crn != null ? var.use_ibm_owned_encryption_key == false : true : true
242+
error_message = "When creating a new elasticsearch instance and setting 'existing_kms_instance_crn', the 'use_ibm_owned_encryption_key' variable must be set to false. If 'existing_kms_instance_crn' and 'existing_kms_key_crn' are null the 'use_ibm_owned_encryption_key' variable must be set to true."
243243
}
244244
}
245245

solutions/standard/README.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

solutions/standard/catalogValidationValues.json.template

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)