oci_load_balancer_ssl_cipher_suite

This resource provides the Ssl Cipher Suite resource in Oracle Cloud Infrastructure Load Balancer service.

Creates a custom SSL cipher suite.

Example Usage

resource "oci_load_balancer_ssl_cipher_suite" "test_ssl_cipher_suite" {
	#Required
	ciphers = var.ssl_cipher_suite_ciphers
	load_balancer_id = oci_load_balancer_load_balancer.test_load_balancer.id
	name = var.ssl_cipher_suite_name
}

Argument Reference

The following arguments are supported:

** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

Attributes Reference

The following attributes are exported:

Timeouts

The timeouts block allows you to specify timeouts for certain operations: * create - (Defaults to 20 minutes), when creating the Ssl Cipher Suite * update - (Defaults to 20 minutes), when updating the Ssl Cipher Suite * delete - (Defaults to 20 minutes), when destroying the Ssl Cipher Suite

Import

SslCipherSuites can be imported using the id, e.g.

$ terraform import oci_load_balancer_ssl_cipher_suite.test_ssl_cipher_suite "loadBalancers/{loadBalancerId}/sslCipherSuites/{name}"