oci_database_management_external_exadata_storage_connector

This resource provides the External Exadata Storage Connector resource in Oracle Cloud Infrastructure Database Management service.

Creates the Exadata storage server connector after validating the connection information.

Example Usage

resource "oci_database_management_external_exadata_storage_connector" "test_external_exadata_storage_connector" {
	#Required
	agent_id = oci_cloud_bridge_agent.test_agent.id
	connection_uri = var.external_exadata_storage_connector_connection_uri
	connector_name = var.external_exadata_storage_connector_connector_name
	credential_info {
		#Required
		password = var.external_exadata_storage_connector_credential_info_password
		username = var.external_exadata_storage_connector_credential_info_username

		#Optional
		ssl_trust_store_location = var.external_exadata_storage_connector_credential_info_ssl_trust_store_location
		ssl_trust_store_password = var.external_exadata_storage_connector_credential_info_ssl_trust_store_password
		ssl_trust_store_type = var.external_exadata_storage_connector_credential_info_ssl_trust_store_type
	}
	storage_server_id = oci_database_management_storage_server.test_storage_server.id

	#Optional
	defined_tags = {"Operations.CostCenter"= "42"}
	freeform_tags = {"Department"= "Finance"}
}

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 External Exadata Storage Connector * update - (Defaults to 20 minutes), when updating the External Exadata Storage Connector * delete - (Defaults to 20 minutes), when destroying the External Exadata Storage Connector

Import

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

$ terraform import oci_database_management_external_exadata_storage_connector.test_external_exadata_storage_connector "id"