Skip to content

Commit 2810381

Browse files
author
Md Anam Raihan
committed
update description and grammer
1 parent a314f0a commit 2810381

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ibm_catalog.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
"value_constraints": [
113113
{
114114
"type": "regex",
115-
"description": "Prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It must not end with a hyphen('-'), and cannot contain consecutive hyphens ('--'). It should not exceed 16 characters",
115+
"description": "Prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It must not end with a hyphen('-'), and cannot contain consecutive hyphens ('--'). It should not exceed 16 characters.",
116116
"value": "^$|^__NULL__$|^[a-z](?!.*--)(?:[a-z0-9-]{0,14}[a-z0-9])?$"
117117
}
118118
]
@@ -285,7 +285,7 @@
285285
"value_constraints": [
286286
{
287287
"type": "regex",
288-
"description": "The value provided for 'existing_cos_kms_key_crn' in not valid.",
288+
"description": "The value provided for 'existing_cos_kms_key_crn' is not valid.",
289289
"value": "^__NULL__$|^crn:(.*:){3}(kms|hs-crypto):(.*:){2}[0-9a-fA-F]{8}(?:-[0-9a-fA-F]{4}){3}-[0-9a-fA-F]{12}:key:[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$"
290290
}
291291
]
@@ -295,7 +295,7 @@
295295
"value_constraints": [
296296
{
297297
"type": "regex",
298-
"description": "The value provided for 'existing_monitoring_crn' in not valid.",
298+
"description": "The value provided for 'existing_monitoring_crn' is not valid.",
299299
"value": "^__NULL__$|^crn:(.*:){3}sysdig-monitor:(.*:){2}[0-9a-fA-F]{8}(?:-[0-9a-fA-F]{4}){3}-[0-9a-fA-F]{12}::$"
300300
}
301301
]

solutions/fully-configurable/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ variable "region" {
3131
variable "prefix" {
3232
type = string
3333
nullable = true
34-
description = "The prefix to be added to all resources created by this solution. To skip using a prefix, set this value to null or an empty string. The prefix must begin with a lowercase letter and may contain only lowercase letters, digits, and hyphens '-'. It should not exceed 16 characters, must not end with a hyphen('-'), and can not contain consecutive hyphens ('--'). Example: at-0312. [Learn more](https://terraform-ibm-modules.github.io/documentation/#/prefix.md)."
34+
description = "The prefix to add to all resources that this solution creates (e.g `prod`, `test`, `dev`). To skip using a prefix, set this value to null or an empty string. [Learn more](https://terraform-ibm-modules.github.io/documentation/#/prefix.md)."
3535

3636
validation {
3737
# - null and empty string is allowed

0 commit comments

Comments
 (0)