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
module"fastly_tls_platform_certificate" {
source="./modules/fastly/r/fastly_tls_platform_certificate"# allow_untrusted_root - (optional) is a type of boolallow_untrusted_root=null# certificate_body - (required) is a type of stringcertificate_body=null# configuration_id - (required) is a type of stringconfiguration_id=null# intermediates_blob - (required) is a type of stringintermediates_blob=null
}
variable"allow_untrusted_root" {
description="(optional) - Disable checking whether the root of the certificate chain is trusted. Useful for development purposes to allow use of self-signed CAs. Defaults to false. Write-only on create."type=booldefault=null
}
variable"certificate_body" {
description="(required) - PEM-formatted certificate."type=string
}
variable"configuration_id" {
description="(required) - ID of TLS configuration to be used to terminate TLS traffic."type=string
}
variable"intermediates_blob" {
description="(required) - PEM-formatted certificate chain from the `certificate_body` to its root."type=string
}
resource"fastly_tls_platform_certificate""this" {
# allow_untrusted_root - (optional) is a type of boolallow_untrusted_root=var.allow_untrusted_root# certificate_body - (required) is a type of stringcertificate_body=var.certificate_body# configuration_id - (required) is a type of stringconfiguration_id=var.configuration_id# intermediates_blob - (required) is a type of stringintermediates_blob=var.intermediates_blob
}