SslSettingsArgs

data class SslSettingsArgs(val certificateId: Output<String>? = null, val sslManagementType: Output<SslSettingsSslManagementType>? = null) : ConvertibleToJava<SslSettingsArgs>

SSL configuration for a DomainMapping resource.

Constructors

Link copied to clipboard
fun SslSettingsArgs(certificateId: Output<String>? = null, sslManagementType: Output<SslSettingsSslManagementType>? = null)

Functions

Link copied to clipboard
open override fun toJava(): SslSettingsArgs

Properties

Link copied to clipboard
val certificateId: Output<String>? = null

ID of the AuthorizedCertificate resource configuring SSL for the application. Clearing this field will remove SSL support.By default, a managed certificate is automatically created for every domain mapping. To omit SSL support or to configure SSL manually, specify SslManagementType.MANUAL on a CREATE or UPDATE request. You must be authorized to administer the AuthorizedCertificate resource to manually map it to a DomainMapping resource. Example: 12345.

Link copied to clipboard

SSL management type for this domain. If AUTOMATIC, a managed certificate is automatically provisioned. If MANUAL, certificate_id must be manually specified in order to configure SSL for this domain.