terraform-provider-bigip icon indicating copy to clipboard operation
terraform-provider-bigip copied to clipboard

ltm policy rule in order to permit the configuration of a datagroup for TCP address filtering

Open diaconud007 opened this issue 3 years ago • 0 comments

Is your feature request related to a problem? Please describe.

With current implementation of the provider you are not able to configure a ltm_policy rule for filtering - for example - the access to a specific context-path from a predefined list of IPs.

This could be done (manually) by configuring a rule condition to match the TCP address within a datagroup of address type:

image

Describe the solution you'd like

A future implementation should permit a user to fill the the name of a datagroup in a rule condition like this:

condition {
      tcp = true
      address          = true
      case_insensitive = true
      external         = true
      request          = true
      matches          = true
      present          = true
      remote           = true
      datagroup        = "/k8s-platformtools/test-platformops"
    }

Describe alternatives you've considered

A clear and concise description of any alternative solutions or features you've considered.

Additional context

Add any other context or screenshots about the feature request here.

diaconud007 avatar Oct 13 '22 09:10 diaconud007