You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: website/docs/d/database_autonomous_database_wallet.html.markdown
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,8 @@ description: |-
8
8
---
9
9
10
10
# Data Source: oci_database_autonomous_database_wallet
11
+
**Deprecated. Use [oci_database_autonomous_database_wallet](https://registry.terraform.io/providers/hashicorp/oci/latest/docs/resources/database_autonomous_database_wallet) instead.**
12
+
11
13
This data source provides details about a specific Autonomous Database Wallet resource in Oracle Cloud Infrastructure Database service.
12
14
13
15
Creates and downloads a wallet for the specified Autonomous Database.
Provides the Autonomous Database Wallet resource in Oracle Cloud Infrastructure Database service
8
+
---
9
+
10
+
# oci_database_autonomous_database_wallet
11
+
This resource provides the Autonomous Database Wallet resource in Oracle Cloud Infrastructure Database service.
12
+
13
+
Creates and downloads a wallet for the specified Autonomous Database.
14
+
15
+
If passing the base64 encoded content to a `local_file` resource, please use the `content_base64` attribute of the `local_file` resource.
16
+
See this [example](https://github.com/terraform-providers/terraform-provider-oci/blob/master/examples/database/adb/autonomous_data_warehouse_wallet.tf) for more details.
17
+
18
+
Recreate the resource to create and download a new wallet.
*`autonomous_database_id` - (Required) The database [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
39
+
*`base64_encode_content` - (Optional) Encodes the downloaded zipped wallet in base64. It is recommended to set this to `true` to avoid corrupting the zip file in Terraform state. The default value is `false` to preserve backwards compatibility with Terraform v0.11 configurations.
40
+
*`generate_type` - (Optional) The type of wallet to generate.
41
+
42
+
**Shared Exadata infrastructure usage:**
43
+
* `SINGLE` - used to generate a wallet for a single database
44
+
* `ALL` - used to generate wallet for all databases in the region
45
+
46
+
**Dedicated Exadata infrastructure usage:** Value must be `NULL` if attribute is used.
47
+
*`password` - (Required) The password to encrypt the keys inside the wallet. The password must be at least 8 characters long and must include at least 1 letter and either 1 numeric character or 1 special character.
48
+
49
+
50
+
** IMPORTANT **
51
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
52
+
53
+
## Attributes Reference
54
+
55
+
The following attributes are exported:
56
+
57
+
*`content` - content of the downloaded zipped wallet for the Autonomous Database. If `base64_encode_content` is set to `true`, then this content will be base64 encoded.
0 commit comments