ssl

This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-f5bigip repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-f5bigip repo.

class pulumi_f5bigip.ssl.Certificate(resource_name, opts=None, content=None, name=None, partition=None, __props__=None, __name__=None, __opts__=None)

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

import pulumi
import pulumi_f5bigip as f5bigip

test_cert = f5bigip.ssl.Certificate("test-cert",
    name="servercert.crt",
    content=(lambda path: open(path).read())("servercert.crt"),
    partition="Common")
Parameters
  • resource_name (str) – The name of the resource.

  • opts (pulumi.ResourceOptions) – Options for the resource.

  • content (pulumi.Input[str]) – Content of certificate on Disk

  • name (pulumi.Input[str]) – Name of the SSL Certificate to be Imported on to BIGIP

  • partition (pulumi.Input[str]) – Partition on to SSL Certificate to be imported

content: pulumi.Output[str] = None

Content of certificate on Disk

name: pulumi.Output[str] = None

Name of the SSL Certificate to be Imported on to BIGIP

partition: pulumi.Output[str] = None

Partition on to SSL Certificate to be imported

static get(resource_name, id, opts=None, content=None, name=None, partition=None)

Get an existing Certificate resource’s state with the given name, id, and optional extra properties used to qualify the lookup.

Parameters
  • resource_name (str) – The unique name of the resulting resource.

  • id (str) – The unique provider ID of the resource to lookup.

  • opts (pulumi.ResourceOptions) – Options for the resource.

  • content (pulumi.Input[str]) – Content of certificate on Disk

  • name (pulumi.Input[str]) – Name of the SSL Certificate to be Imported on to BIGIP

  • partition (pulumi.Input[str]) – Partition on to SSL Certificate to be imported

translate_output_property(prop)

Provides subclasses of Resource an opportunity to translate names of output properties into a format of their choosing before writing those properties to the resource object.

Parameters

prop (str) – A property name.

Returns

A potentially transformed property name.

Return type

str

translate_input_property(prop)

Provides subclasses of Resource an opportunity to translate names of input properties into a format of their choosing before sending those properties to the Pulumi engine.

Parameters

prop (str) – A property name.

Returns

A potentially transformed property name.

Return type

str

class pulumi_f5bigip.ssl.Key(resource_name, opts=None, content=None, name=None, partition=None, __props__=None, __name__=None, __opts__=None)

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

import pulumi
import pulumi_f5bigip as f5bigip

test_key = f5bigip.ssl.Key("test-key",
    name="serverkey.key",
    content=(lambda path: open(path).read())("serverkey.key"),
    partition="Common")
Parameters
  • resource_name (str) – The name of the resource.

  • opts (pulumi.ResourceOptions) – Options for the resource.

  • content (pulumi.Input[str]) – Content of SSL certificate key present on local Disk

  • name (pulumi.Input[str]) – Name of the SSL Certificate key to be Imported on to BIGIP

  • partition (pulumi.Input[str]) – Partition on to SSL Certificate key to be imported

content: pulumi.Output[str] = None

Content of SSL certificate key present on local Disk

name: pulumi.Output[str] = None

Name of the SSL Certificate key to be Imported on to BIGIP

partition: pulumi.Output[str] = None

Partition on to SSL Certificate key to be imported

static get(resource_name, id, opts=None, content=None, name=None, partition=None)

Get an existing Key resource’s state with the given name, id, and optional extra properties used to qualify the lookup.

Parameters
  • resource_name (str) – The unique name of the resulting resource.

  • id (str) – The unique provider ID of the resource to lookup.

  • opts (pulumi.ResourceOptions) – Options for the resource.

  • content (pulumi.Input[str]) – Content of SSL certificate key present on local Disk

  • name (pulumi.Input[str]) – Name of the SSL Certificate key to be Imported on to BIGIP

  • partition (pulumi.Input[str]) – Partition on to SSL Certificate key to be imported

translate_output_property(prop)

Provides subclasses of Resource an opportunity to translate names of output properties into a format of their choosing before writing those properties to the resource object.

Parameters

prop (str) – A property name.

Returns

A potentially transformed property name.

Return type

str

translate_input_property(prop)

Provides subclasses of Resource an opportunity to translate names of input properties into a format of their choosing before sending those properties to the Pulumi engine.

Parameters

prop (str) – A property name.

Returns

A potentially transformed property name.

Return type

str