Jump to content
Updated Privacy Statement

How to bind sslprofile to gateway vpn server?


Recommended Posts

Hi Nico,

You may already know that to bind the SSL Profile, you need to use the resource argument:

resource "citrixadc_sslvserver" "gateway_ssl_vserver" {

vservername = "myGateway"

sslprofile = "ns_default_ssl_profile_secure_frontend"

}

However, before you can use this argument, you first need to enable the SSL Parameter, Default Profile.

resource "citrixadc_sslparameter" "default" {

defaultprofile = "ENABLED"

}

Enabling Default Profile is a one-way action and will affect all the SSL vServers on the NetScaler. This will result in all of the SSL vServers using ns_default_ssl_profile_secure_frontend. You can then use Terraform to change them to a new custom profile.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...