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
I'm requesting the ability to use a port list in terraform so I can specify a range of ports for my virtual server to listen on. This can be done in the F5 UI but not terraform according to the documentation
Ideally, I would like to be able to do something like this:
resource "bigip_ltm_virtual_server" "VS_EXAMPLE" {
pool = "/Common/POOL_EXAMPLE"
name = "/Common/VS_EXAMPLE"
description = ""
destination = "10.0.0.0"
translate_port = "enabled"
ip_protocol = "any"
port = [514, 12201, 12204, 12205]
}
Any suggestions or workarounds in the meantime?
The text was updated successfully, but these errors were encountered:
I have not. Can that be used to JSON port lists for a VS, or even the whole VS config? And were there any plans to add the port list option to terraform in the future? Thanks for the reply
Hi,
I'm requesting the ability to use a port list in terraform so I can specify a range of ports for my virtual server to listen on. This can be done in the F5 UI but not terraform according to the documentation
Ideally, I would like to be able to do something like this:
resource "bigip_ltm_virtual_server" "VS_EXAMPLE" {
pool = "/Common/POOL_EXAMPLE"
name = "/Common/VS_EXAMPLE"
description = ""
destination = "10.0.0.0"
translate_port = "enabled"
ip_protocol = "any"
port = [514, 12201, 12204, 12205]
}
Any suggestions or workarounds in the meantime?
The text was updated successfully, but these errors were encountered: