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
Copy file name to clipboardExpand all lines: solutions/standard/main.tf
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -26,11 +26,11 @@ locals {
26
26
existing_kms_guid=var.existing_kms_instance_crn!=null?element(split(":", var.existing_kms_instance_crn), length(split(":", var.existing_kms_instance_crn)) -3) :tobool("The CRN of the existing KMS is not provided.")
description="Region to provision all resources created by this example"
14
+
default="us-south"
15
+
}
16
+
17
+
variable"prefix" {
18
+
type=string
19
+
description="Prefix to append to all resources created by this example"
20
+
default="en-ext-res"
21
+
}
22
+
23
+
variable"resource_group" {
24
+
type=string
25
+
description="The name of an existing resource group to provision resources in to. If not set a new resource group will be created using the prefix variable"
26
+
default=null
27
+
}
28
+
29
+
variable"resource_tags" {
30
+
type=list(string)
31
+
description="Optional list of tags to be added to created resources"
0 commit comments