Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ No resources.
| <a name="output_binding"></a> [binding](#output\_binding) | Configuration of the created code engine binding. |
| <a name="output_build"></a> [build](#output\_build) | Configuration of the created code engine build. |
| <a name="output_config_map"></a> [config\_map](#output\_config\_map) | Configuration of the created code engine config map. |
| <a name="output_domain_mapping"></a> [domain\_mapping](#output\_domain\_mapping) | Configuration of the created code engine domain maping. |
| <a name="output_domain_mapping"></a> [domain\_mapping](#output\_domain\_mapping) | Configuration of the created code engine domain mapping. |
| <a name="output_job"></a> [job](#output\_job) | Configuration of the created code engine job. |
| <a name="output_project_id"></a> [project\_id](#output\_project\_id) | ID of the created code engine project. |
| <a name="output_secret"></a> [secret](#output\_secret) | Configuration of the created code engine secret. |
Expand Down
2 changes: 1 addition & 1 deletion examples/apps/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ output "secret" {
}

output "domain_mapping" {
description = "Configuration of the created code engine domain maping."
description = "Configuration of the created code engine domain mapping."
value = module.code_engine.domain_mapping
}
27 changes: 24 additions & 3 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,14 @@
},
{
"key": "prefix",
"required": true
"required": true,
"value_constraints": [
{
"type": "regex",
"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.",
"value": "^$|^__NULL__$|^[a-z](?!.*--)(?:[a-z0-9-]{0,14}[a-z0-9])?$"
}
]
},
{
"key": "existing_resource_group_name",
Expand Down Expand Up @@ -243,7 +250,14 @@
"key": "image_port"
},
{
"key": "managed_domain_mappings"
"key": "managed_domain_mappings",
"value_constraints": [
{
"type": "regex",
"description": "The value provided for 'managed_domain_mappings' is not valid. Valid values are 'local_public', 'local_private', or 'local'.",
"value": "^__NULL__$|^local_public$|^local_private$|^local$"
}
]
},
{
"key": "run_arguments"
Expand Down Expand Up @@ -379,7 +393,14 @@
},
{
"key": "prefix",
"required": true
"required": true,
"value_constraints": [
{
"type": "regex",
"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.",
"value": "^$|^__NULL__$|^[a-z](?!.*--)(?:[a-z0-9-]{0,14}[a-z0-9])?$"
}
]
},
{
"key": "existing_resource_group_name",
Expand Down
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@ output "binding" {
}

output "domain_mapping" {
description = "Configuration of the created code engine domain maping."
description = "Configuration of the created code engine domain mapping."
value = module.domain_mapping
}
2 changes: 1 addition & 1 deletion solutions/apps/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ output "secret" {
}

output "domain_mapping" {
description = "Configuration of the created code engine domain maping."
description = "Configuration of the created code engine domain mapping."
value = module.code_engine.domain_mapping
}

Expand Down
2 changes: 1 addition & 1 deletion solutions/apps/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ variable "region" {
variable "prefix" {
type = string
nullable = true
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: prod-0205-cos. [Learn more](https://terraform-ibm-modules.github.io/documentation/#/prefix.md)."
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)."

validation {
# - null and empty string is allowed
Expand Down
2 changes: 1 addition & 1 deletion solutions/project/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ output "secret" {
}

output "domain_mapping" {
description = "Configuration of the created code engine domain maping."
description = "Configuration of the created code engine domain mapping."
value = module.domain_mapping
}

Expand Down
2 changes: 1 addition & 1 deletion solutions/project/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ variable "provider_visibility" {
variable "prefix" {
type = string
nullable = true
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: prod-0205-cos. [Learn more](https://terraform-ibm-modules.github.io/documentation/#/prefix.md)."
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)."

validation {
# - null and empty string is allowed
Expand Down