sslPolicy property

String? sslPolicy
getter/setter pair

The SSL policy that will be applied to the application.

If set to Modern it will restrict traffic with TLS < 1.2 and allow only Modern Ciphers suite Possible string values are:

  • "SSL_POLICY_UNSPECIFIED" : Required by linter. Will work same as DEFAULT
  • "DEFAULT" : DEFAULT is to allow all TLS versions and cipher suites supported by App Engine
  • "MODERN" : MODERN is to allow only TLS 1.2 and TLS 1.3 along with Modern cipher suites only

Implementation

core.String? sslPolicy;