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
Is your feature request related to a problem? Please describe.
In LTM I have an ingress virtual server that hosts multiple websites behind a single distribution IP and I would like to use terraform to add new websites in a modular way from their own codebases. I was planning on using iRule Stacking but I don't see a resource that can link an irule to an existing virtual_server?
Without this feature or something similar I can't see how an application can add routing logic for itself? Combining everything into a monolith is not really an option.
Additional context
The ability to do this is critical to removing the manual error prone UI clicking it currently takes to add websites and is blocking us from doing modern DevOps Infrastructure as Code causing higher ups to see bigip ltm as undesirable.
Any help or feedback will be greatly appreciated!
Thank you
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
In LTM I have an ingress virtual server that hosts multiple websites behind a single distribution IP and I would like to use terraform to add new websites in a modular way from their own codebases. I was planning on using iRule Stacking but I don't see a resource that can link an irule to an existing virtual_server?
Describe the solution you'd like
Add a bigip_ltm_virtual_server_irule_link resource eg.
resource "bigip_ltm_virtual_server_irule_link" "link" {
irule_name = "/Common/existing_irule"
virtual_server_name = "/Common/existing_vs_http"
}
Describe alternatives you've considered
Without this feature or something similar I can't see how an application can add routing logic for itself? Combining everything into a monolith is not really an option.
Additional context
The ability to do this is critical to removing the manual error prone UI clicking it currently takes to add websites and is blocking us from doing modern DevOps Infrastructure as Code causing higher ups to see bigip ltm as undesirable.
Any help or feedback will be greatly appreciated!
Thank you
The text was updated successfully, but these errors were encountered: