Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.02 KB

appflowaction.md

File metadata and controls

35 lines (26 loc) · 1.02 KB

netscaler_appflowaction

Terraform resource name : netscaler_appflowaction

Arguments
Name Force new Array Type
clientsidemeasurements No No ENABLED, DISABLED
collectors Yes No appflowcollector.name
comment No No string
name No No string
pagetracking No No ENABLED, DISABLED
securityinsight No No ENABLED, DISABLED
webinsight No No ENABLED, DISABLED
Argument Reference

See official documentation page for possible values for these arguments and for an exhaustive list of arguments.

Example
resource "netscaler_appflowaction" "<resource_name>" {

    clientsidemeasurements = "ENABLED"
    collectors = [ ... ]"${netscaler_appflowcollector.<resource_name>.name[]}"
    comment = "abc"
    name = "abc"
    pagetracking = "ENABLED"
    securityinsight = "ENABLED"
    webinsight = "ENABLED"
}