Skip to content

Commit 7ee7d24

Browse files
authored
Merge pull request #2239 from oracle/release_gh
Releasing version 6.17.0
2 parents 77156f7 + c5f3df3 commit 7ee7d24

File tree

237 files changed

+6414
-1095
lines changed

Some content is hidden

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

237 files changed

+6414
-1095
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
## 6.17.0 (November 06, 2024)
2+
3+
### Added
4+
- Support to start/stop/update Data Flow SQL Endpoint
5+
- Support for ZPR (DBaaS)
6+
- Support for ZPR (DBaaS)
7+
- Support for MFA Enablement v2 - Prevent customers from opting out of MFA Policy
8+
- Support for TLS & ORDS BYO Certificates (Phase 2) | ADB-D
9+
110
## 6.16.0 (October 30, 2024)
211

312
### Added

examples/database/dataguard/vm_shape/dataguard.tf

Lines changed: 0 additions & 197 deletions
This file was deleted.
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# $Header$
2+
#
3+
# Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
4+
# NAME
5+
# datasources.tf - Shepherd Data Source file
6+
#
7+
# USAGE
8+
#
9+
# NOTES
10+
# Terraform Example: TestDatabaseDataGuardAssociationResource_basic
11+
# FILES
12+
#
13+
# DESCRIPTION
14+
#
15+
# MODIFIED MM/DD/YY
16+
# escabrer 10/14/2024 - Created
17+
18+
19+
data "oci_core_services" "test_services" {
20+
filter {
21+
name = "name"
22+
regex = "true"
23+
values = [".*Oracle.*Services.*Network"]
24+
}
25+
}
26+
27+
data "oci_database_db_homes" "t" {
28+
compartment_id = var.compartment_id
29+
db_system_id = oci_database_db_system.test_db_system.id
30+
}
31+
32+
data "oci_database_databases" "db" {
33+
compartment_id = var.compartment_id
34+
db_home_id = data.oci_database_db_homes.t.db_homes.0.db_home_id
35+
}
36+
37+
data "oci_identity_availability_domains" "test_availability_domains" {
38+
compartment_id = var.tenancy_ocid
39+
}
40+

0 commit comments

Comments
 (0)