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: provided the ability to opt out of provisioning logging or monitoring instances using new boolean input variables log_analysis_provision and cloud_monitoring_provision (#45)
validate_log_analysis_provision=var.enable_at_event_routing_to_log_analysis&& var.log_analysis_provision==false?tobool("log_analysis_provision can't be false if enable_at_event_routing_to_log_analysis is true") :true
count=(var.existing_cos_instance_crn==null) ?1:0# no need to call COS module if consumer is using existing COS instance
214
+
count=(var.existing_cos_instance_crn==null) &&length(local.bucket_config_map) !=0?1:0# no need to call COS module if consumer is using existing COS instance
description="Set it to true to provision an IBM Cloud Logging instance"
45
+
type=bool
46
+
default=true
47
+
}
48
+
43
49
variable"log_analysis_instance_name" {
44
50
type=string
45
51
description="The name of the IBM Cloud Logging instance to create. If prefix input variable is passed then it will get prefixed infront of the value in the format of '<prefix>-value'"
description="Set it to true to provision an IBM cloud monitoring instance"
122
+
type=bool
123
+
default=true
124
+
}
125
+
114
126
variable"cloud_monitoring_instance_name" {
115
127
type=string
116
128
description="The name of the IBM Cloud Monitoring instance to create. If prefix input variable is passed then it will get prefixed infront of the value in the format of '<prefix>-value'"
0 commit comments