Skip to content

Commit a9ce84b

Browse files
authored
Merge pull request #2143 from oracle/release_gh
Releasing version 5.47.0
2 parents 53abb1f + d364396 commit a9ce84b

File tree

148 files changed

+1295
-110
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+1295
-110
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion

examples/database/adb/autonomous_database.tf

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,31 @@ resource "oci_database_autonomous_database" "test_autonomous_database_bck_ret_da
129129
is_free_tier = "false"
130130
}
131131

132+
resource "oci_database_autonomous_database" "autonomous_database_private_ip_with_acls" {
133+
#Required
134+
admin_password = random_string.autonomous_database_admin_password.result
135+
compartment_id = var.compartment_ocid
136+
compute_count = "2.0"
137+
compute_model = "ECPU"
138+
data_storage_size_in_tbs = "1"
139+
db_name = "adbdbpeacl"
140+
141+
#Optional
142+
db_version = data.oci_database_autonomous_db_versions.test_autonomous_db_versions.autonomous_db_versions[0].version
143+
db_workload = var.autonomous_database_db_workload
144+
display_name = "example_autonomous_database"
145+
freeform_tags = var.autonomous_database_freeform_tags
146+
is_auto_scaling_enabled = "true"
147+
is_auto_scaling_for_storage_enabled = "true"
148+
license_model = var.autonomous_database_license_model
149+
is_preview_version_with_service_terms_accepted = "false"
150+
character_set = "AL32UTF8"
151+
ncharacter_set = "AL16UTF16"
152+
subnet_id = oci_core_subnet.test_subnet.id
153+
nsg_ids = ["test-bn-nsg-id-1"]
154+
whitelisted_ips = ["1.1.1.28"]
155+
}
156+
132157
resource "oci_database_autonomous_database" "test_autonomous_database_db_tools" {
133158
admin_password = random_string.autonomous_database_admin_password.result
134159
compartment_id = var.compartment_ocid
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
// Copyright (c) 2017, 2024, Oracle and/or its affiliates. All rights reserved.
2+
// Licensed under the Mozilla Public License v2.0
3+
4+
variable "tenancy_ocid" {}
5+
variable "user_ocid" {}
6+
variable "fingerprint" {}
7+
variable "private_key_path" {}
8+
variable "region" {}
9+
variable "data_safe_target_ocid" {}
10+
variable "data_safe_masking_policy_id" {}
11+
12+
provider "oci" {
13+
tenancy_ocid = var.tenancy_ocid
14+
user_ocid = var.user_ocid
15+
fingerprint = var.fingerprint
16+
private_key_path = var.private_key_path
17+
region = var.region
18+
}
19+
20+
21+
resource "oci_data_safe_masking_policy_health_report_management" "test_health_report" {
22+
#Required
23+
target_id = var.data_safe_target_ocid
24+
masking_policy_id = var.data_safe_masking_policy_id
25+
}

examples/zips/adm.zip

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

examples/zips/aiDocument.zip

0 Bytes
Binary file not shown.

examples/zips/aiLanguage.zip

0 Bytes
Binary file not shown.

examples/zips/aiVision.zip

0 Bytes
Binary file not shown.

examples/zips/always_free.zip

0 Bytes
Binary file not shown.

examples/zips/analytics.zip

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)