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_security_network_based_device_single_v2" {
source="./modules/ecl/r/ecl_security_network_based_device_single_v2"# az_group - (required) is a type of stringaz_group=null# license_kind - (required) is a type of stringlicense_kind=null# locale - (optional) is a type of stringlocale=null# operating_mode - (required) is a type of stringoperating_mode=null# tenant_id - (required) is a type of stringtenant_id=nullport=[{
comment =null
enable =null
ip_address =null
ip_address_prefix =null
mtu =null
network_id =null
subnet_id =null
}]
timeouts=[{
create =null
delete =null
update =null
}]
}
resource"ecl_security_network_based_device_single_v2""this" {
# az_group - (required) is a type of stringaz_group=var.az_group# license_kind - (required) is a type of stringlicense_kind=var.license_kind# locale - (optional) is a type of stringlocale=var.locale# operating_mode - (required) is a type of stringoperating_mode=var.operating_mode# tenant_id - (required) is a type of stringtenant_id=var.tenant_iddynamic"port" {
for_each=var.portcontent {
# comment - (optional) is a type of stringcomment=port.value["comment"]
# enable - (required) is a type of stringenable=port.value["enable"]
# ip_address - (optional) is a type of stringip_address=port.value["ip_address"]
# ip_address_prefix - (optional) is a type of numberip_address_prefix=port.value["ip_address_prefix"]
# mtu - (optional) is a type of stringmtu=port.value["mtu"]
# network_id - (optional) is a type of stringnetwork_id=port.value["network_id"]
# subnet_id - (optional) is a type of stringsubnet_id=port.value["subnet_id"]
}
}
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"]
# update - (optional) is a type of stringupdate=timeouts.value["update"]
}
}
}