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"ecl_dedicated_hypervisor_server_v1" {
source="./modules/ecl/r/ecl_dedicated_hypervisor_server_v1"# admin_pass - (optional) is a type of stringadmin_pass=null# availability_zone - (optional) is a type of stringavailability_zone=null# description - (optional) is a type of stringdescription=null# flavor_ref - (required) is a type of stringflavor_ref=null# image_ref - (required) is a type of stringimage_ref=null# metadata - (optional) is a type of map of stringmetadata={}
# name - (required) is a type of stringname=nullnetworks=[{
fixed_ip =null
plane =null
port =null
segmentation_id =null
uuid =null
}]
timeouts=[{
create =null
delete =null
}]
}
resource"ecl_dedicated_hypervisor_server_v1""this" {
# admin_pass - (optional) is a type of stringadmin_pass=var.admin_pass# availability_zone - (optional) is a type of stringavailability_zone=var.availability_zone# description - (optional) is a type of stringdescription=var.description# flavor_ref - (required) is a type of stringflavor_ref=var.flavor_ref# image_ref - (required) is a type of stringimage_ref=var.image_ref# metadata - (optional) is a type of map of stringmetadata=var.metadata# name - (required) is a type of stringname=var.namedynamic"networks" {
for_each=var.networkscontent {
# fixed_ip - (optional) is a type of stringfixed_ip=networks.value["fixed_ip"]
# plane - (required) is a type of stringplane=networks.value["plane"]
# port - (optional) is a type of stringport=networks.value["port"]
# segmentation_id - (required) is a type of numbersegmentation_id=networks.value["segmentation_id"]
# uuid - (optional) is a type of stringuuid=networks.value["uuid"]
}
}
dynamic"timeouts" {
for_each=var.timeoutscontent {
# create - (optional) is a type of stringcreate=timeouts.value["create"]
# delete - (optional) is a type of stringdelete=timeouts.value["delete"]
}
}
}