Skip to content

Commit

Permalink
Merge pull request #2239 from oracle/release_gh
Browse files Browse the repository at this point in the history
Releasing version 6.17.0
  • Loading branch information
ganbaras authored Nov 7, 2024
2 parents 77156f7 + c5f3df3 commit 7ee7d24
Show file tree
Hide file tree
Showing 237 changed files with 6,414 additions and 1,095 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 6.17.0 (November 06, 2024)

### Added
- Support to start/stop/update Data Flow SQL Endpoint
- Support for ZPR (DBaaS)
- Support for ZPR (DBaaS)
- Support for MFA Enablement v2 - Prevent customers from opting out of MFA Policy
- Support for TLS & ORDS BYO Certificates (Phase 2) | ADB-D

## 6.16.0 (October 30, 2024)

### Added
Expand Down
197 changes: 0 additions & 197 deletions examples/database/dataguard/vm_shape/dataguard.tf

This file was deleted.

40 changes: 40 additions & 0 deletions examples/database/dataguard/vm_shape/datasources.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# $Header$
#
# Copyright (c) 2024, Oracle and/or its affiliates. All rights reserved.
# NAME
# datasources.tf - Shepherd Data Source file
#
# USAGE
#
# NOTES
# Terraform Example: TestDatabaseDataGuardAssociationResource_basic
# FILES
#
# DESCRIPTION
#
# MODIFIED MM/DD/YY
# escabrer 10/14/2024 - Created


data "oci_core_services" "test_services" {
filter {
name = "name"
regex = "true"
values = [".*Oracle.*Services.*Network"]
}
}

data "oci_database_db_homes" "t" {
compartment_id = var.compartment_id
db_system_id = oci_database_db_system.test_db_system.id
}

data "oci_database_databases" "db" {
compartment_id = var.compartment_id
db_home_id = data.oci_database_db_homes.t.db_homes.0.db_home_id
}

data "oci_identity_availability_domains" "test_availability_domains" {
compartment_id = var.tenancy_ocid
}

Loading

0 comments on commit 7ee7d24

Please sign in to comment.