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
module"oci_health_checks_ping_probe_results" {
source="./modules/oci/d/oci_health_checks_ping_probe_results"# probe_configuration_id - (required) is a type of stringprobe_configuration_id=null# start_time_greater_than_or_equal_to - (optional) is a type of numberstart_time_greater_than_or_equal_to=null# start_time_less_than_or_equal_to - (optional) is a type of numberstart_time_less_than_or_equal_to=null# target - (optional) is a type of stringtarget=nullfilter=[{
name =null
regex =null
values = []
}]
}
data"oci_health_checks_ping_probe_results""this" {
# probe_configuration_id - (required) is a type of stringprobe_configuration_id=var.probe_configuration_id# start_time_greater_than_or_equal_to - (optional) is a type of numberstart_time_greater_than_or_equal_to=var.start_time_greater_than_or_equal_to# start_time_less_than_or_equal_to - (optional) is a type of numberstart_time_less_than_or_equal_to=var.start_time_less_than_or_equal_to# target - (optional) is a type of stringtarget=var.targetdynamic"filter" {
for_each=var.filtercontent {
# name - (required) is a type of stringname=filter.value["name"]
# regex - (optional) is a type of boolregex=filter.value["regex"]
# values - (required) is a type of list of stringvalues=filter.value["values"]
}
}
}
output"id" {
description="returns a string"value=data.oci_health_checks_ping_probe_results.this.id
}
output"ping_probe_results" {
description="returns a list of object"value=data.oci_health_checks_ping_probe_results.this.ping_probe_results
}
output"this" {
value=oci_health_checks_ping_probe_results.this
}