The example for OriginCaCertificate references an invalid TLS CertRequest property Subjects whereas the property is Subject.
Example
Example in the registry
var exampleCertRequest = new Tls.CertRequest("exampleCertRequest", new()
{
PrivateKeyPem = examplePrivateKey.PrivateKeyPem,
Subjects = new[]
{
new Tls.Inputs.CertRequestSubjectArgs
{
CommonName = "",
Organization = "Terraform Test",
},
},
});
Working example (c#)
var exampleCertRequest = new Tls.CertRequest("exampleCertRequest", new()
{
PrivateKeyPem = examplePrivateKey.PrivateKeyPem,
Subject = new Tls.Inputs.CertRequestSubjectArgs
{
CommonName = "example.com",
Organization = "ACME Examples, Inc",
},
});
Output of pulumi about
n/a
Additional context
No response
Contributing
Vote on this issue by adding a π reaction.
To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).
What happened?
The example for OriginCaCertificate references an invalid TLS CertRequest property
Subjects
whereas the property isSubject
.Example
Example in the registry
Working example (c#)
Output of
pulumi about
n/a
Additional context
No response
Contributing
Vote on this issue by adding a π reaction. To contribute a fix for this issue, leave a comment (and link to your pull request, if you've opened one already).