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"bigip_ltm_profile_oneconnect" {
source="./modules/bigip/r/bigip_ltm_profile_oneconnect"# defaults_from - (optional) is a type of stringdefaults_from=null# idle_timeout_override - (optional) is a type of stringidle_timeout_override=null# limit_type - (optional) is a type of stringlimit_type=null# max_age - (optional) is a type of numbermax_age=null# max_reuse - (optional) is a type of numbermax_reuse=null# max_size - (optional) is a type of numbermax_size=null# name - (required) is a type of stringname=null# partition - (optional) is a type of stringpartition=null# share_pools - (optional) is a type of stringshare_pools=null# source_mask - (optional) is a type of stringsource_mask=null
}
variable"defaults_from" {
description="(optional) - Use the parent oneconnect profile"type=stringdefault=null
}
variable"idle_timeout_override" {
description="(optional) - idleTimeoutOverride can be enabled or disabled"type=stringdefault=null
}
variable"limit_type" {
description="(optional) - Controls how connection limits are enforced in conjunction with OneConnect. The default is None. Supported Values: [None,idle,strict]"type=stringdefault=null
}
variable"max_age" {
description="(optional) - max_age has integer value typical 3600 sec"type=numberdefault=null
}
variable"max_reuse" {
description="(optional) - max_reuse has integer value typical 1000 sec"type=numberdefault=null
}
variable"max_size" {
description="(optional) - max_size has integer value typical 1000 sec"type=numberdefault=null
}
variable"name" {
description="(required) - Name of the Oneconnect Profile"type=string
}
variable"partition" {
description="(optional) - name of partition"type=stringdefault=null
}
variable"share_pools" {
description="(optional) - sharePools can be enabled or disabled"type=stringdefault=null
}
variable"source_mask" {
description="(optional) - source_mask can be 255.255.255.255"type=stringdefault=null
}
resource"bigip_ltm_profile_oneconnect""this" {
# defaults_from - (optional) is a type of stringdefaults_from=var.defaults_from# idle_timeout_override - (optional) is a type of stringidle_timeout_override=var.idle_timeout_override# limit_type - (optional) is a type of stringlimit_type=var.limit_type# max_age - (optional) is a type of numbermax_age=var.max_age# max_reuse - (optional) is a type of numbermax_reuse=var.max_reuse# max_size - (optional) is a type of numbermax_size=var.max_size# name - (required) is a type of stringname=var.name# partition - (optional) is a type of stringpartition=var.partition# share_pools - (optional) is a type of stringshare_pools=var.share_pools# source_mask - (optional) is a type of stringsource_mask=var.source_mask
}