f5-ansible icon indicating copy to clipboard operation
f5-ansible copied to clipboard

RFE: bigip_virtual_server - add support for parameter serverssl-use-sni

Open amolari opened this issue 1 year ago • 1 comments

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

I need to set the VS parameter serverssl-use-sni to true (non-default value).

Describe the solution you'd like

Please add the paremeter serverssl-use-sni (bool value, default false) to the module bigip_virtual_server

Describe alternatives you've considered

uri module

Context

TMSH:

# modify ltm virtual <name> serverssl-use-sni
Values:
  disabled   enabled

amolari avatar Feb 02 '24 13:02 amolari

Hi @amolari,

As it can be done using bigip_command module (example below), the RFE is not validated.

 tasks:
   - name: sni
     f5networks.f5_modules.bigip_command:
       provider: "{{ provider }}"
       commands: modify ltm virtual test-sni serverssl-use-sni disabled
     delegate_to: localhost

pgouband avatar Feb 16 '24 16:02 pgouband