We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f38dab7 commit 280f2d2Copy full SHA for 280f2d2
multipass/main.tf
@@ -39,6 +39,12 @@ variable "splunk_jdk" {
39
default = false
40
}
41
42
+variable "otel_demo" {
43
+ description = "Spin up the OpenTelemetry Astronomy Shop Demo? (true/false)"
44
+ type = bool
45
+ default = false
46
+}
47
+
48
variable "instance_password" {
49
default = ""
50
@@ -58,6 +64,7 @@ locals {
58
64
realm = var.splunk_realm
59
65
presetup = var.splunk_presetup
60
66
jdk = var.splunk_jdk
67
+ otel_demo = var.otel_demo
61
68
instance_name = "${random_string.hostname.result}"
62
69
instance_password = var.instance_password
63
70
0 commit comments