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_core_dedicated_vm_hosts" {
source="./modules/oci/d/oci_core_dedicated_vm_hosts"# availability_domain - (optional) is a type of stringavailability_domain=null# compartment_id - (required) is a type of stringcompartment_id=null# display_name - (optional) is a type of stringdisplay_name=null# instance_shape_name - (optional) is a type of stringinstance_shape_name=null# remaining_memory_in_gbs_greater_than_or_equal_to - (optional) is a type of numberremaining_memory_in_gbs_greater_than_or_equal_to=null# remaining_ocpus_greater_than_or_equal_to - (optional) is a type of numberremaining_ocpus_greater_than_or_equal_to=null# state - (optional) is a type of stringstate=nullfilter=[{
name =null
regex =null
values = []
}]
}
data"oci_core_dedicated_vm_hosts""this" {
# availability_domain - (optional) is a type of stringavailability_domain=var.availability_domain# compartment_id - (required) is a type of stringcompartment_id=var.compartment_id# display_name - (optional) is a type of stringdisplay_name=var.display_name# instance_shape_name - (optional) is a type of stringinstance_shape_name=var.instance_shape_name# remaining_memory_in_gbs_greater_than_or_equal_to - (optional) is a type of numberremaining_memory_in_gbs_greater_than_or_equal_to=var.remaining_memory_in_gbs_greater_than_or_equal_to# remaining_ocpus_greater_than_or_equal_to - (optional) is a type of numberremaining_ocpus_greater_than_or_equal_to=var.remaining_ocpus_greater_than_or_equal_to# state - (optional) is a type of stringstate=var.statedynamic"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"dedicated_vm_hosts" {
description="returns a list of object"value=data.oci_core_dedicated_vm_hosts.this.dedicated_vm_hosts
}
output"id" {
description="returns a string"value=data.oci_core_dedicated_vm_hosts.this.id
}
output"this" {
value=oci_core_dedicated_vm_hosts.this
}