Skip to content

Commit

Permalink
docs: update default value of prefix and description in catalog.json (#…
Browse files Browse the repository at this point in the history
…279)

* Modified prefix description

* fix: update prefix default value

* fix: Update prefix value

---------

Co-authored-by: Arya Girish K <[email protected]>
  • Loading branch information
arya-girish-k and Arya Girish K authored Jan 27, 2025
1 parent f441d5f commit 4ad537d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@
},
{
"key": "prefix",
"required": true
"required": true,
"description":"Prefix to add to all resources created by this solution. To not use any prefix value, you can enter the string `__NULL__`."
},
{
"key": "skip_iam_account_settings"
Expand Down
4 changes: 2 additions & 2 deletions solutions/account-infrastructure-base/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ variable "region" {

variable "prefix" {
type = string
description = "An optional prefix to append to all resources created by this solution. If `provision_atracker_cos` is true, this value will be converted to lowercase in all instances. Prefix value can be an empty string (\"\") or `null` for advanced users."
default = "infrabase"
description = "An optional prefix to add to all resources created by this solution. If `provision_atracker_cos` is true, this value will be converted to lowercase in all instances. To not use any prefix value, you can set this value to `null` or an empty string."
default = "dev"

# prefix restriction due to limitations when using multiple DAs in stacks
# this value was determined based on the lowest prefix restriction located here:
Expand Down

0 comments on commit 4ad537d

Please sign in to comment.