Data Source: oci_database_autonomous_database_wallet

Deprecated. Use oci_database_autonomous_database_wallet instead.

This data source provides details about a specific Autonomous Database Wallet resource in Oracle Cloud Infrastructure Database service.

Creates and downloads a wallet for the specified Autonomous Database.

Example Usage

data "oci_database_autonomous_database_wallet" "test_autonomous_database_wallet" {
	#Required
	autonomous_database_id = oci_database_autonomous_database.test_autonomous_database.id
	password = var.autonomous_database_wallet_password

	#Optional
	base64_encode_content = "false"
	generate_type = var.autonomous_database_wallet_generate_type
	is_regional = var.autonomous_database_wallet_is_regional
}

Argument Reference

The following arguments are supported:

Attributes Reference

The following attributes are exported:

If passing the base64 encoded content to a local_file resource, please use the content_base64 attribute of the local_file resource. See this example for more details.