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
feat: remove Account Config DA from customize DA flow, add default value for prefix using random string generator and update logic that handles default resource group lookup (#175)
"description": "Organize your IBM Cloud account with preconfigured resource groups. If not selected, the default resource group is used. Optionally, expand to apply recommended security controls via \"with Account Settings\" variation.",
"description": "Configure an IBM Cloud Security and Compliance Center Workload Protection instance to help you manage security and compliance for your organization.",
"description": "The name of an existing resource group to provision the resources."
370
+
}
380
371
},
381
372
{
382
373
"key": "region",
@@ -394,7 +385,18 @@
394
385
},
395
386
{
396
387
"key": "prefix",
397
-
"required": true
388
+
"required": true,
389
+
"default_value": "dev",
390
+
"random_string": {
391
+
"length": 4
392
+
},
393
+
"value_constraints": [
394
+
{
395
+
"type": "regex",
396
+
"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.",
Copy file name to clipboardExpand all lines: solutions/fully-configurable/variables.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -65,8 +65,8 @@ variable "prefix" {
65
65
66
66
variable"existing_resource_group_name" {
67
67
type=string
68
-
description="The name of an existing resource group to provision the resources. If not provided the default resource group will be used."
69
-
default=null
68
+
description="The name of an existing resource group to provision the resources. [Learn more](https://cloud.ibm.com/docs/account?topic=account-rgs&interface=ui#create_rgs) about how to create a resource group."
0 commit comments