F5Networks / terraform-provider-bigip

Terraform resources that can configure F5 BIG-IP products
https://registry.terraform.io/providers/F5Networks/bigip/latest/docs
Mozilla Public License 2.0
103 stars 119 forks source link

RFE: add the functionality to support HTTP2 full proxy #837

Open amolari opened 1 year ago

amolari commented 1 year ago

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

It's currently not possible to configure HTTP2 full proxy support (Virtual Server) with the Terraform BIG-IP provider

Describe the solution you'd like

add the functionality to support HTTP2 full proxy

Describe alternatives you've considered

none known

Additional context

Configuring HTTP/2 Full-proxy Support on the BIG-IP System

nickzxcv commented 1 year ago

Yes it is possible... one thing I found out is that it seems like the "HTTP MRF Router" option might be a boolean argument for the virtual server resource, but in fact it's a profile (not a client or server profile) called "/Common/httprouter" and I also needed to set the client profile "/Common/http2".

I found this out by creating the resource with Terraform, checking the "HTTP MRF Router" box in the GUI, and then running apply again and seeing that it wanted to delete the "/Common/httprouter" profile, so I added that to my terraform and all was good.