terraform-provider-bigip
terraform-provider-bigip copied to clipboard
ltm policy rule in order to permit the configuration of a datagroup for TCP address filtering
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:

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.