Namespace Pulumi.F5BigIP.Ssl
Classes
Certificate
f5bigip.ssl.Certificate This resource will import SSL certificates on BIG-IP LTM.
Certificates can be imported from certificate files on the local disk, in PEM format
Example Usage
using System.IO;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
class MyStack : Stack
{
public MyStack()
{
var test_cert = new F5BigIP.Ssl.Certificate("test-cert", new F5BigIP.Ssl.CertificateArgs
{
Name = "servercert.crt",
Content = File.ReadAllText("servercert.crt"),
Partition = "Common",
});
}
}
CertificateArgs
CertificateState
Key
f5bigip.ssl.Key This resource will import SSL certificate key on BIG-IP LTM.
Certificate key can be imported from certificate key files on the local disk, in PEM format
Example Usage
using System.IO;
using Pulumi;
using F5BigIP = Pulumi.F5BigIP;
class MyStack : Stack
{
public MyStack()
{
var test_key = new F5BigIP.Ssl.Key("test-key", new F5BigIP.Ssl.KeyArgs
{
Name = "serverkey.key",
Content = File.ReadAllText("serverkey.key"),
Partition = "Common",
});
}
}